diff --git a/Cargo.toml b/Cargo.toml index ec94eb2..0a49b9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,8 +24,6 @@ keywords = ["near", "smart-contract", "plugin"] [workspace.dependencies] bitflags = "1.3" near-sdk = "5.2" -near-plugins = { path = "near-plugins" } -near-plugins-derive = { path = "near-plugins-derive" } serde = "1" anyhow = "1.0" tokio = { version = "1", features = ["full"] } diff --git a/near-plugins-derive/Cargo.toml b/near-plugins-derive/Cargo.toml index be8409a..ce39c34 100644 --- a/near-plugins-derive/Cargo.toml +++ b/near-plugins-derive/Cargo.toml @@ -23,7 +23,7 @@ proc-macro-crate.workspace = true [dev-dependencies] anyhow.workspace = true -near-plugins.workspace = true +near-plugins = { path = "../near-plugins/", version = "0.5.1" } near-sdk = { workspace = true, features = ["unit-testing"] } tokio.workspace = true near-workspaces.workspace = true diff --git a/near-plugins/Cargo.toml b/near-plugins/Cargo.toml index 2519ce5..546b467 100644 --- a/near-plugins/Cargo.toml +++ b/near-plugins/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] bitflags.workspace = true near-sdk.workspace = true -near-plugins-derive.workspace = true +near-plugins-derive = { path = "../near-plugins-derive/", version = "0.5.1" } serde.workspace = true [dev-dependencies]