Skip to content

Commit

Permalink
Merge pull request #185 from 0xDmtri/alloy-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Jul 20, 2024
2 parents a8b97ab + 8740d06 commit 2a7d008
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ exclude = [
]

[dependencies]
arraydeque = { version = "0.5.1", optional = true }
arraydeque = { version = "0.5", optional = true }
artemis-core = { git = "https://github.com/paradigmxyz/artemis.git", branch = "main", optional = true }
async-trait = "0.1.80"
eyre = "0.6.12"
futures = "0.3.30"
lazy_static = "1.5.0"
num-bigfloat = "1.7.1"
regex = "1.10.5"
serde = "1.0.203"
serde_json = "1.0.118"
thiserror = "1.0.61"
tokio = { version = "1.38.0", default-features = false }
tracing = "0.1.40"
async-trait = "0.1"
eyre = "0.6"
futures = "0.3"
lazy_static = "1.5"
num-bigfloat = "1.7"
regex = "1.10"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.38", default-features = false }
tracing = "0.1"
uniswap_v3_math = { git = "https://github.com/0xKitsune/uniswap-v3-math.git", rev = "1120ff6" }
alloy = { version = "0.1.3", features = [
alloy = { version = "0.2", features = [
"contract",
"network",
"provider-ws",
"rpc-types-eth",
"signer-local",
] }
reqwest = "0.12.5"
reqwest = "0.12"

[features]
default = ["filters", "state-space"]
Expand All @@ -45,10 +45,10 @@ state-space = ["arraydeque"]
artemis = ["artemis-core"]

[dev-dependencies]
tracing-subscriber = "0.3.18"
criterion = "0.5.1"
tokio = { version = "1.38.0", default-features = false, features = [ "rt-multi-thread" ] }
alloy = { version = "0.1.3", features = [
tracing-subscriber = "0.3"
criterion = "0.5"
tokio = { version = "1.38", default-features = false, features = [ "rt-multi-thread" ] }
alloy = { version = "0.2", features = [
"rpc-client",
] }

Expand Down

0 comments on commit 2a7d008

Please sign in to comment.