From 8a1ea4f482aebedc02daa7671398958d555ac3d7 Mon Sep 17 00:00:00 2001 From: James Oakley Date: Wed, 17 Jul 2024 20:44:47 -0400 Subject: [PATCH] Cargo still needs explicit version for dependencies when publishing (#267) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 14f63f8..8d18296 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 = [