Skip to content

Commit

Permalink
Merge pull request #36 from lu-bann/preconf-upgrade
Browse files Browse the repository at this point in the history
Upgrade preconf dependencies and fix all warnings
  • Loading branch information
0w3n-d authored Oct 7, 2024
2 parents f26c74a + f759280 commit 0c03943
Show file tree
Hide file tree
Showing 106 changed files with 4,293 additions and 7,827 deletions.
3,798 changes: 1,699 additions & 2,099 deletions Cargo.lock

Large diffs are not rendered by default.

79 changes: 45 additions & 34 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resolver = "2"

[workspace.package]
version = "0.0.1"
rust-version = "1.72.0"
rust-version = "1.81.0"
edition = "2021"
repository = "https://github.com/gattaca-com/helix"
license = "MIT OR Apache-2.0"
Expand All @@ -28,52 +28,63 @@ helix-housekeeper = { path = "./crates/housekeeper" }
helix-utils = { path = "./crates/utils" }

# Async and Networking
async-trait = "0.1"
axum = {version = "0.7.4", features = ["ws"]}
dashmap = { version = "5.5.3", features = [] }
futures = "0.3"
hyper = "1.1.0"
http = "1.0.0"
tower = { version = "0.4.13", features = ["full"] }
reqwest = { version = "0.11.23", features = ["json", "native-tls-vendored", "stream"] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-stream = {version = "0.1.15", features = ["sync"]}
tower-http = { version = "0.5.1", features = ["limit"] }
url = "2.4"
async-trait = "0.1.83"
axum = {version = "0.7.6", features = ["ws"]}
dashmap = { version = "6.1.0", features = [] }
futures = "0.3.30"
hyper = "1.4.1"
http = "1.1.0"
tower = { version = "0.5.1", features = ["full"] }
reqwest = { version = "0.12.7", features = ["json", "native-tls-vendored", "stream"] }
tokio = { version = "1.40.0", features = ["full"] }
tokio-stream = {version = "0.1.16", features = ["sync"]}
tower-http = { version = "0.6.1", features = ["limit"] }
url = "2.5.2"
tonic = "0.12.2"
prost = "0.13.3"
tonic-build = "0.12.2"
reqwest-eventsource = "0.6.0"
futures-util = "0.3.30"

# Serialization and Data Format
serde = { version = "1.0.191", features = ["derive"] }
serde_json = "1.0.106"
hex = "0.4.2"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
hex = "0.4.3"
flate2 = "1.0.33"
serde_yaml = "0.9.33"

# DB
deadpool-redis = { version = "0.12.0", features = ["rt_tokio_1"] }
redis = { version = "0.23.2", features = ["aio", "tokio-comp"] }
tokio-postgres = "0.7.10"
deadpool-postgres = "0.11.0"
refinery = { version = "0.8", features = ["tokio-postgres"]}
bytes = "1.5.0"
chrono = "0.4.19"
tokio-postgres = "0.7.12"
deadpool-postgres = "0.14.0"
refinery = { version = "0.8.14", features = ["tokio-postgres"]}
bytes = "1.7.2"
chrono = "0.4.38"

# Ethereum Types
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "fc049504a200926c8bd5f0fbd3f9696c6c6f699d" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "5dd5555c5c7d8e43420e273e7005b8af63a847a5" }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "cf3c404043230559660810bc0c9d6d5a8498d819" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.0.7" }

# Logging
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing-appender = "0.2.2"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"

# Testing and Mocking
mockito = "1.1.1"
serial_test = "1.0.0"
tracing-test = "0.2.3"
env_logger = "0.9"
mockito = "1.5.0"
serial_test = "3.1.1"
tracing-test = "0.2.5"
env_logger = "0.11.5"

# Misc
auto_impl = "1.0.1"
thiserror = "1.0.49"
uuid = { version = "1.5", features = ["fast-rng", "v4"] }
auto_impl = "1.2.0"
thiserror = "1.0.64"
uuid = { version = "1.10.0", features = ["fast-rng", "v4"] }
rand = "0.8.5"
moka = "0.12.8"
num_cpus = "1.16.0"
clap = {version = "4.5.18", features = ["derive"]}

# Broadcasting
fiber = { git = "https://github.com/chainbound/fiber-rs.git", tag = "v0.5.1" }
fiber = { git = "https://github.com/chainbound/fiber-rs.git", tag = "v0.7.4" }
16 changes: 8 additions & 8 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ tokio = { workspace = true }
tokio-tungstenite = "0.16"
tower-http = { workspace = true }
url = { workspace = true }
tonic = "0.10"
prost = "0.12"
tonic = { workspace = true }
prost = { workspace = true }

# Serialization and Data Format
flate2 = "1.0"
flate2 = { workspace = true }
serde.workspace = true
serde_json.workspace = true

Expand All @@ -47,12 +47,12 @@ mockito.workspace = true

# Misc
auto_impl.workspace = true
rand = "0.8"
rand = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
bytes = "1.5"
moka = "0.9"
uuid = { workspace = true, features = ["fast-rng", "v4"] }
bytes = { workspace = true }
moka = { workspace = true, features = ["sync"]}

[build-dependencies]
tonic-build = "0.10"
tonic-build = { workspace = true }
Loading

0 comments on commit 0c03943

Please sign in to comment.