aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-02-03 12:59:22 +0000
committerGitHub <[email protected]>2021-02-03 12:59:22 +0000
commit85e1f0905aae762b8d64b52e76bbc6aa5915894b (patch)
tree269c350411483fc125e68cf7b81445844975d0b6 /crates
parent05b3fe4255445a095bb30301dabfb7878e8c382e (diff)
parenta89fc070c60ea636061669a5cc3e25ba2c8ca61c (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]>
Diffstat (limited to 'crates')
-rw-r--r--crates/mbe/Cargo.toml2
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"
17syntax = { path = "../syntax", version = "0.0.0" } 17syntax = { path = "../syntax", version = "0.0.0" }
18parser = { path = "../parser", version = "0.0.0" } 18parser = { path = "../parser", version = "0.0.0" }
19tt = { path = "../tt", version = "0.0.0" } 19tt = { path = "../tt", version = "0.0.0" }
20test_utils = { path = "../test_utils" } 20test_utils = { path = "../test_utils", version = "0.0.0" }
21 21