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
113 changes: 110 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ exclude = [".github/"]
[workspace]
members = [
"crates/rbuilder-primitives",
"crates/rbuilder-utils",
"crates/rbuilder-config",
"crates/rbuilder",
"crates/rbuilder-operator",
Expand All @@ -28,6 +29,7 @@ default-members = [
"crates/reth-rbuilder",
"crates/rbuilder-rebalancer",
"crates/rbuilder-primitives",
"crates/rbuilder-utils",
"crates/test-relay",
"crates/bid-scraper",
]
Expand Down Expand Up @@ -197,6 +199,7 @@ eth-sparse-mpt = { path = "crates/eth-sparse-mpt" }
bid-scraper = { path = "crates/bid-scraper" }
rbuilder = { path = "crates/rbuilder" }
rbuilder-primitives = { path = "crates/rbuilder-primitives" }
rbuilder-utils = { path = "crates/rbuilder-utils" }
rbuilder-config = { path = "crates/rbuilder-config" }
sysperf = { path = "crates/sysperf" }
metrics_macros = { path = "crates/rbuilder/src/telemetry/metrics_macros" }
69 changes: 69 additions & 0 deletions crates/rbuilder-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
[package]
name = "rbuilder-utils"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
exclude.workspace = true

[dependencies]
reth-tasks = { git = "https://github.com/paradigmxyz/reth", rev = "9c30bf7af5e0d45deaf5917375c9922c16654b28" }

# misc
derivative.workspace = true
integer-encoding = "4.0.0"
sha2 = { workspace = true, features = ["asm"] }
uuid = { version = "1.6.1", features = ["serde", "v5", "v4"] }
governor = "0.6.3"
ahash.workspace = true
reqwest = { workspace = true, features = ["blocking"] }
serde_with = { workspace = true, features = ["time_0_3"] }
toml.workspace = true
tracing.workspace = true
time.workspace = true
thiserror.workspace = true
eyre.workspace = true
serde.workspace = true
derive_more.workspace = true
serde_json.workspace = true


# alloy
alloy-primitives.workspace = true

strum = "0.27"
strum_macros = "0.27"
tokio = { version = "1.40.0", default-features = false, features = [
"sync",
"time",
"rt-multi-thread",
"macros",
"test-util"
] }

clickhouse = { git = "https://github.com/ClickHouse/clickhouse-rs", rev = "8cf3d2e138dd121367fa10e875d3f91374b075b2", features = [
"inserter",
"time",
"uuid",
"native-tls"
] }
clickhouse-derive = { version = "0.2.0" }
redb = { version = "3.1.0" }
tempfile = { version = "3.23.0" }
rand = "0.9.2"
futures = { version = "0.3" }
futures-util = { version = "0.3.31" }

# tracing
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-futures = "0.2.5"

# misc
auto_impl = "1.3.0"
dyn-clone = "1.0.20"

[features]
default = []
test-utils = []
Loading
Loading