diff --git a/jarust/Cargo.toml b/jarust/Cargo.toml index a906a2f..eb81a10 100644 --- a/jarust/Cargo.toml +++ b/jarust/Cargo.toml @@ -50,9 +50,9 @@ tokio-rt = [ [dev-dependencies] anyhow = "1.0.93" async-trait.workspace = true -jarust_core = { version = "0.8.0", path = "../jarust_core" } -jarust_interface = { version = "0.8.0", path = "../jarust_interface" } -jarust_plugins = { version = "0.8.0", path = "../jarust_plugins" } +jarust_core = { path = "../jarust_core" } +jarust_interface = { path = "../jarust_interface" } +jarust_plugins = { path = "../jarust_plugins" } serde_json.workspace = true serde.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } diff --git a/jarust_plugins/Cargo.toml b/jarust_plugins/Cargo.toml index 67c96b2..3f84155 100644 --- a/jarust_plugins/Cargo.toml +++ b/jarust_plugins/Cargo.toml @@ -50,8 +50,8 @@ use-rustls = ["jarust_interface/use-rustls"] [dev-dependencies] anyhow = "1.0.93" -jarust_core = { version = "0.8.0", path = "../jarust_core" } -jarust_interface = { version = "0.8.0", path = "../jarust_interface" } -jarust_rt = { version = "0.8.0", path = "../jarust_rt" } +jarust_core = { path = "../jarust_core" } +jarust_interface = { path = "../jarust_interface" } +jarust_rt = { path = "../jarust_rt" } tokio = { workspace = true, features = ["time", "macros", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }