Skip to content

Commit

Permalink
Use workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Nov 28, 2023
1 parent e6222be commit c631d8a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Code/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ publish = false

[workspace.dependencies]
async-trait = "0.1"
futures = "0.3"
ed25519-consensus = "2.1.0"
itf = { git = "https://github.com/informalsystems/itf-rs", rev = "16c1c2c" }
futures = "0.3"
glob = "0.3.0"
itf = "0.2.1"
num-bigint = "0.4.4"
rand = { version = "0.8.5", features = ["std_rng"] }
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10.8"
signature = "2.1.0"
6 changes: 3 additions & 3 deletions Code/itf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ rand = { workspace = true }
malachite-common = { version = "0.1.0", path = "../common" }
malachite-vote = { version = "0.1.0", path = "../vote" }
malachite-test = { version = "0.1.0", path = "../test" }
num-bigint = { version = "0.4", features = ["serde"] }
num-bigint = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { version = "1.0.108" }
glob = { version = "0.3.1" }
serde_json = { workspace = true }
glob = { workspace = true }

[dev-dependencies]
tempfile = { version = "3.8.1" }

0 comments on commit c631d8a

Please sign in to comment.