Skip to content

Commit

Permalink
Cargo still needs explicit version for dependencies when publishing (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Electron100 authored Jul 18, 2024
1 parent 60b9689 commit 8a1ea4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ repository = "https://github.com/Electron100/butane"
version = "0.7.0"

[workspace.dependencies]
butane = { path = "butane" }
butane = { version = "0.7", path = "butane" }
butane_cli = { path = "butane_cli" }
butane_core = { path = "butane_core" }
butane_codegen = { path = "butane_codegen" }
butane_core = { version = "0.7", path = "butane_core" }
butane_codegen = { version = "0.7", path = "butane_codegen" }
butane_test_helper = { path = "butane_test_helper" }
cfg-if = "^1.0"
chrono = { version = "0.4.25", default-features = false, features = [
Expand Down

0 comments on commit 8a1ea4f

Please sign in to comment.