mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): move some deps to workspace (#5020)
This commit is contained in:
@ -133,6 +133,7 @@ aquamarine = "0.3"
|
|||||||
bytes = "1.5"
|
bytes = "1.5"
|
||||||
bitflags = "2.3"
|
bitflags = "2.3"
|
||||||
clap = "4"
|
clap = "4"
|
||||||
|
eyre = "0.6"
|
||||||
tracing = "0.1.0"
|
tracing = "0.1.0"
|
||||||
tracing-appender = "0.2"
|
tracing-appender = "0.2"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
@ -145,6 +146,8 @@ itertools = "0.11"
|
|||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
metrics = "0.21.1" # Needed for `metrics-macro` to resolve the crate using `::metrics` notation
|
metrics = "0.21.1" # Needed for `metrics-macro` to resolve the crate using `::metrics` notation
|
||||||
hex-literal = "0.4"
|
hex-literal = "0.4"
|
||||||
|
once_cell = "1.17"
|
||||||
|
syn = "2.0"
|
||||||
|
|
||||||
### proc-macros
|
### proc-macros
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|||||||
@ -95,7 +95,7 @@ hyper = "0.14.25"
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
aquamarine.workspace = true
|
aquamarine.workspace = true
|
||||||
eyre = "0.6.8"
|
eyre.workspace = true
|
||||||
clap = { workspace = true, features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
backon = "0.4"
|
backon = "0.4"
|
||||||
|
|||||||
@ -12,10 +12,10 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2.workspace = true
|
proc-macro2.workspace = true
|
||||||
syn = { version = "2.0", features = ["extra-traits"] }
|
syn = { workspace = true, features = ["extra-traits"] }
|
||||||
quote.workspace = true
|
quote.workspace = true
|
||||||
regex = "1.6.0"
|
regex = "1.6.0"
|
||||||
once_cell = "1.17.0"
|
once_cell.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
metrics.workspace = true
|
metrics.workspace = true
|
||||||
|
|||||||
@ -47,7 +47,7 @@ sucds = "~0.6"
|
|||||||
modular-bitfield = "0.11.2"
|
modular-bitfield = "0.11.2"
|
||||||
derive_more = "0.99"
|
derive_more = "0.99"
|
||||||
url = "2.3"
|
url = "2.3"
|
||||||
once_cell = "1.17.0"
|
once_cell.workspace = true
|
||||||
zstd = { version = "0.12", features = ["experimental"] }
|
zstd = { version = "0.12", features = ["experimental"] }
|
||||||
rayon.workspace = true
|
rayon.workspace = true
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
|
|||||||
@ -22,7 +22,7 @@ proc-macro = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2.workspace = true
|
proc-macro2.workspace = true
|
||||||
quote.workspace = true
|
quote.workspace = true
|
||||||
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
syn = { workspace = true, features = ["full", "extra-traits"] }
|
||||||
convert_case = "0.6.0"
|
convert_case = "0.6.0"
|
||||||
|
|
||||||
# codecs
|
# codecs
|
||||||
|
|||||||
@ -43,7 +43,7 @@ thiserror.workspace = true
|
|||||||
tempfile = { workspace = true, optional = true }
|
tempfile = { workspace = true, optional = true }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
derive_more = "0.99"
|
derive_more = "0.99"
|
||||||
eyre = "0.6.8"
|
eyre.workspace = true
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
|
|
||||||
# arbitrary utils
|
# arbitrary utils
|
||||||
|
|||||||
@ -22,7 +22,7 @@ reth-network.workspace = true
|
|||||||
reth-transaction-pool.workspace = true
|
reth-transaction-pool.workspace = true
|
||||||
reth-tasks.workspace = true
|
reth-tasks.workspace = true
|
||||||
|
|
||||||
eyre = "0.6.8"
|
eyre.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
|
|||||||
@ -11,7 +11,7 @@ reth-transaction-pool.workspace = true
|
|||||||
|
|
||||||
clap = { workspace = true, features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
jsonrpsee = { workspace = true, features = ["server", "macros"] }
|
jsonrpsee = { workspace = true, features = ["server", "macros"] }
|
||||||
eyre = "0.6"
|
eyre.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
|
|||||||
@ -8,4 +8,4 @@ license.workspace = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
reth.workspace = true
|
reth.workspace = true
|
||||||
clap.workspace = true
|
clap.workspace = true
|
||||||
eyre = "0.6"
|
eyre.workspace = true
|
||||||
|
|||||||
@ -6,8 +6,8 @@ edition.workspace = true
|
|||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.17.0"
|
once_cell.workspace = true
|
||||||
eyre = "0.6.8"
|
eyre.workspace = true
|
||||||
|
|
||||||
reth-primitives.workspace = true
|
reth-primitives.workspace = true
|
||||||
reth-network.workspace = true
|
reth-network.workspace = true
|
||||||
|
|||||||
@ -10,4 +10,4 @@ futures.workspace = true
|
|||||||
jsonrpsee.workspace = true
|
jsonrpsee.workspace = true
|
||||||
reth.workspace = true
|
reth.workspace = true
|
||||||
tokio = { workspace = true, features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
eyre = "0.6.8"
|
eyre.workspace = true
|
||||||
|
|||||||
Reference in New Issue
Block a user