-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 977 Bytes
/
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
[package]
name = "sol-e2e"
version = "0.1.0"
edition = "2021"
[dependencies]
alloy = { version = "0.6.4", features = [
"network",
"node-bindings",
"providers",
] }
alloy-contract = "0.6.4"
alloy-signer-local = { version = "0.6.4", features = ["mnemonic"] }
alloy-sol-types = { version = "0.8.12", features = ["json"] }
anyhow = "1.0.93"
bon = "3.0.1"
kurtosis-sdk = "1.4.2"
rstest = "0.23.0"
serde_json = "1.0.133"
testresult = "0.4.1"
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.12", features = ["stream"] }
futures = "0.3"
beacon-api = { git = "https://github.com/unionlabs/union", rev = "22495bd" }
unionlabs = { git = "https://github.com/unionlabs/union", rev = "22495bd" }
ics008-wasm-client = { git = "https://github.com/unionlabs/union", rev = "22495bd" }
protos = { git = "https://github.com/unionlabs/union", rev = "22495bd", features = [
"serde",
] }
[lints.clippy]
std_instead_of_core = "warn"