Skip to content

Commit

Permalink
Need versioned import for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Oct 24, 2023
1 parent cee57df commit b6d5ebb
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions bin/opup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }
Expand Down

0 comments on commit b6d5ebb

Please sign in to comment.