-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathCargo.toml
39 lines (37 loc) · 1.24 KB
/
Cargo.toml
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
[package]
name = "sequencer-utils"
version = "0.1.0"
authors = ["Espresso Systems <hello@espressosys.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
testing = []
[dependencies]
alloy = { workspace = true }
anyhow = { workspace = true }
ark-serialize = { workspace = true, features = ["derive"] }
async-trait = { workspace = true }
clap = { workspace = true }
committable = "0.2"
contract-bindings-alloy = { workspace = true }
contract-bindings-ethers = { path = "../contract-bindings-ethers" }
derive_more = { workspace = true }
ethers = { workspace = true }
ethers-conv = { workspace = true }
futures = { workspace = true }
hotshot = { workspace = true }
hotshot-contract-adapter = { workspace = true }
hotshot-types = { workspace = true }
log-panics = { workspace = true }
portpicker = { workspace = true }
# for price oracle and align with ethers-rs dep
reqwest = { version = "0.12.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { workspace = true }
serde_json = "^1.0.113"
surf = "2.3.2"
tempfile = { workspace = true }
tokio = { workspace = true }
toml = { workspace = true }
tower-service = { workspace = true }
tracing = "0.1.37"
url = "2.3.1"