From b6d5ebb2bcfdd8743d2d687c5aa9711fc8d48494 Mon Sep 17 00:00:00 2001 From: refcell Date: Tue, 24 Oct 2023 10:59:43 -0400 Subject: [PATCH] Need versioned import for publishing --- bin/opup/Cargo.toml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/bin/opup/Cargo.toml b/bin/opup/Cargo.toml index 340b45b..831ef4d 100644 --- a/bin/opup/Cargo.toml +++ b/bin/opup/Cargo.toml @@ -8,11 +8,11 @@ authors.workspace = true license.workspace = true [dependencies] -op-composer = { path = "../../crates/composer" } -op-config = { path = "../../crates/config" } -op-primitives = { path = "../../crates/primitives" } -op-contracts = { path = "../../crates/contracts" } -op-stages = { path = "../../crates/stages" } +op-composer = { version = "0.1.0", path = "../../crates/composer" } +op-config = { version = "0.1.0", path = "../../crates/config" } +op-primitives = { version = "0.1.0", path = "../../crates/primitives" } +op-contracts = { version = "0.1.0", path = "../../crates/contracts" } +op-stages = { version = "0.1.0", path = "../../crates/stages" } serde.workspace = true serde_json.workspace = true @@ -21,16 +21,16 @@ futures.workspace = true tracing.workspace = true tracing-subscriber.workspace = true -platforms = "3.1.2" -which = "4.4.2" -humantime = "2.1.0" +platforms = "3.1" +which = "5.0" +humantime = "2.1" prettytable-rs = "0.10" semver = { version = "1.0", features = ["serde"] } -svm-rs = "0.3.0" -bollard = "0.15.0" -inquire = "0.6.2" -tokio = { version = "1.11.0", features = ["full"] } -clap = { version = "4.4.3", features = ["derive"] } +svm-rs = "0.3" +bollard = "0.15" +inquire = "0.6" +tokio = { version = "1.33", features = ["full"] } +clap = { version = "4.4", features = ["derive"] } [target.'cfg(not(windows))'.dependencies] jemallocator = { version = "0.5.0", optional = true }