Skip to content

Commit 8a1ea4f

Browse files
authored
Cargo still needs explicit version for dependencies when publishing (#267)
1 parent 60b9689 commit 8a1ea4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ repository = "https://github.com/Electron100/butane"
1818
version = "0.7.0"
1919

2020
[workspace.dependencies]
21-
butane = { path = "butane" }
21+
butane = { version = "0.7", path = "butane" }
2222
butane_cli = { path = "butane_cli" }
23-
butane_core = { path = "butane_core" }
24-
butane_codegen = { path = "butane_codegen" }
23+
butane_core = { version = "0.7", path = "butane_core" }
24+
butane_codegen = { version = "0.7", path = "butane_codegen" }
2525
butane_test_helper = { path = "butane_test_helper" }
2626
cfg-if = "^1.0"
2727
chrono = { version = "0.4.25", default-features = false, features = [

0 commit comments

Comments
 (0)