Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ license = "GPL-3"
description = "Configuration utility for Ethereum network simulations in Shadow"
authors = ["Pop Chunhapanya <[email protected]>", "Daniel Knopik <[email protected]>"]

[workspace.dependencies]
clap = "4.5"
color-eyre = "0.6"
env_logger = "0.11"
ethshadow = { path = "lib" }
hex = "0.4.3"
humantime-serde = "1.1"
itertools = "0.13"
libsecp256k1 = "0.7.1"
log = "0.4"
rand = "0.8.5"
serde = "1.0"
serde_yaml = "0.9"
tempfile = "3.13"
thiserror = "1.0"
typetag = "0.2"
users = "0.11"

[workspace]
members = ["lib"]
resolver = "2"
Expand All @@ -29,7 +47,7 @@ name = "ethshadow"
path = "ethshadow.rs"

[dependencies]
ethshadow = { path = "lib" }
clap = { version = "4.5", features = ["cargo"] }
color-eyre = "0.6"
env_logger = "0.11"
ethshadow = { workspace = true }
clap = { workspace = true, features = ["cargo"] }
color-eyre = { workspace = true }
env_logger = { workspace = true }
24 changes: 12 additions & 12 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ description.workspace = true
authors.workspace = true

[dependencies]
serde_yaml = "0.9" # deprecated, but stable, and what shadow uses
serde = { version = "1.0", features = ["derive"] }
humantime-serde = "1.1"
thiserror = "1.0"
rand = "0.8.5"
libsecp256k1 = "0.7.1"
hex = "0.4.3"
typetag = "0.2"
itertools = "0.13"
users = "0.11"
log = "0.4"
serde_yaml = { workspace = true } # deprecated, but stable, and what shadow uses
serde = { workspace = true, features = ["derive"] }
humantime-serde = { workspace = true }
thiserror = { workspace = true }
rand = { workspace = true }
libsecp256k1 = { workspace = true }
hex = { workspace = true }
typetag = { workspace = true }
itertools = { workspace = true }
users = { workspace = true }
log = { workspace = true }

[dev-dependencies]
tempfile = "3.13"
tempfile = { workspace = true }