diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-01 16:18:08 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-01 16:18:08 +0000 |
commit | c17f2bf2a27798858ef2e3012ca28295aed46efa (patch) | |
tree | e53b8f31b65fa92c34fdf0efed141ae603519831 /crates/mbe | |
parent | f3139d46b073eebc48ec347c899c05e286e6de0e (diff) | |
parent | a445584029213962149ff66d4f566b5bfe0ee076 (diff) |
Merge #7828
7828: Use an unversioned profile dependency in mbe r=edwin0cheng a=lnicola
Apparently, dev dependencies shouldn't be versioned. This hopefully fixes publishing to crates.io.
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'crates/mbe')
-rw-r--r-- | crates/mbe/Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/mbe/Cargo.toml b/crates/mbe/Cargo.toml index bbee2e32c..8b5cca22c 100644 --- a/crates/mbe/Cargo.toml +++ b/crates/mbe/Cargo.toml | |||
@@ -19,8 +19,5 @@ 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", version = "0.0.0" } | 20 | test_utils = { path = "../test_utils", version = "0.0.0" } |
21 | 21 | ||
22 | # FIXME: Paper over a bug in cargo-worspaces which block publishing | 22 | [dev-dependencies] |
23 | # https://github.com/pksunkara/cargo-workspaces/issues/39 | 23 | profile = { path = "../profile" } |
24 | # [dev-dependencies] | ||
25 | profile = { path = "../profile", version = "0.0.0" } | ||
26 | |||