-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (74 loc) · 3.25 KB
/
Cargo.toml
File metadata and controls
79 lines (74 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
members = ["sdk"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.88.0"
license = "BUSL-1.1"
exclude = [".github/"]
[workspace.dependencies]
angstrom-sdk = { path = "./sdk" }
alloy-consensus = { version = "1.8.2", default-features = false }
alloy-contract = { version = "1.8.2", default-features = false }
alloy-eips = { version = "1.8.2", default-features = false }
alloy-json-rpc = { version = "1.8.2", default-features = false }
alloy-network = { version = "1.8.2", default-features = false }
alloy-node-bindings = { version = "1.8.2", default-features = false }
alloy-primitives = { version = "1.5.6", default-features = false, features = ["map-foldhash"] }
alloy-provider = { version = "1.8.2", default-features = false, features = ["reqwest", "anvil-api"] }
alloy-rpc-types = { version = "1.8.2", default-features = false, features = ["eth"] }
alloy-signer = { version = "1.8.2", default-features = false }
alloy-signer-local = { version = "1.8.2", default-features = false }
alloy-sol-types = "1.5.6"
alloy-transport = { version = "1.8.2", default-features = false }
angstrom-rpc-api = { git = "https://github.com/SorellaLabs/angstrom.git" }
angstrom-rpc-types = { git = "https://github.com/SorellaLabs/angstrom.git" }
angstrom-types-primitives = { git = "https://github.com/SorellaLabs/angstrom.git" }
async-trait = "0"
auto_impl = "1.3"
dotenv = "0.15"
eth-network-exts = { git = "https://github.com/SorellaLabs/lib-eth", default-features = false }
eyre = "0.6.12"
futures = "0.3.26"
itertools = "0.14"
jsonrpsee-core = "0.26.0"
jsonrpsee-http-client = "0.26.0"
jsonrpsee-ws-client = "0.26.0"
lazy_static = "1.5.0"
lib-reth = { git = "https://github.com/SorellaLabs/lib-eth", default-features = false, features = [
"uniswap-storage",
"ws",
"ipc",
"rayon",
] }
malachite = "0.4"
malachite-q = "0.4"
# op-alloy-network = { version = "0.24.0", default-features = false }
op-alloy-network = { git = "https://github.com/ethereum-optimism/optimism", rev = "1e3ee25", default-features = false }
pade = { git = "https://github.com/SorellaLabs/pade", version = "0.1.0" }
paste = "1"
rand = "0.9"
reth-db = { git = "https://github.com/paradigmxyz/reth", version = "2.0.0", tag = "v2.0.0", default-features = false, features = [
"mdbx",
] }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", version = "2.0.0", tag = "v2.0.0" }
reth-node-types = { git = "https://github.com/paradigmxyz/reth", version = "2.0.0", tag = "v2.0.0" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", version = "2.0.0", tag = "v2.0.0" }
revm = { version = "36.0.0", features = [
"std",
"secp256k1",
"optional_balance_check",
"optional_block_gas_limit",
"c-kzg",
], default-features = false }
revm-database = { version = "12.0.0", default-features = false }
rust-utils = { git = "https://github.com/jnoorchashm37/rust-utils.git" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serial_test = "3.2"
testing-tools = { git = "https://github.com/SorellaLabs/angstrom.git", default-features = false }
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
uni-v4 = { git = "https://github.com/SorellaLabs/angstrom-v4.git", default-features = false }
uniswap-storage = { git = "https://github.com/SorellaLabs/lib-eth" }