diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-02-03 12:59:22 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-03 12:59:22 +0000 |
commit | 85e1f0905aae762b8d64b52e76bbc6aa5915894b (patch) | |
tree | 269c350411483fc125e68cf7b81445844975d0b6 | |
parent | 05b3fe4255445a095bb30301dabfb7878e8c382e (diff) | |
parent | a89fc070c60ea636061669a5cc3e25ba2c8ca61c (diff) |
Merge #7538
7538: Make sure normal dependencies always have version r=edwin0cheng a=pksunkara
How do I prevent this happening in the future by doing something in the CI? IIRC this is the second time.
Co-authored-by: Pavan Kumar Sunkara <[email protected]>
-rw-r--r-- | crates/mbe/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mbe/Cargo.toml b/crates/mbe/Cargo.toml index 43bc10490..ef0907194 100644 --- a/crates/mbe/Cargo.toml +++ b/crates/mbe/Cargo.toml | |||
@@ -17,5 +17,5 @@ log = "0.4.8" | |||
17 | syntax = { path = "../syntax", version = "0.0.0" } | 17 | syntax = { path = "../syntax", version = "0.0.0" } |
18 | parser = { path = "../parser", version = "0.0.0" } | 18 | parser = { path = "../parser", version = "0.0.0" } |
19 | tt = { path = "../tt", version = "0.0.0" } | 19 | tt = { path = "../tt", version = "0.0.0" } |
20 | test_utils = { path = "../test_utils" } | 20 | test_utils = { path = "../test_utils", version = "0.0.0" } |
21 | 21 | ||