-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
42 lines (37 loc) · 1.03 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
40
41
42
[workspace]
resolver = "2"
members = [
"indexer",
"contracts/evm/test/ffi/bls-utils",
"offchain",
"tests/e2e/e2e_tests",
]
[workspace.package]
version = "0.0.1"
edition = "2021"
repository = "https://github.com/Nuffle-Labs/nffl"
[workspace.dependencies]
alloy = { version = "0.4.2", features = ["full", "node-bindings", "rpc-types-debug", "rpc-types-trace", "json-rpc", "rpc-client", "serde", "json-abi", "eip712"] }
alloy-primitives = "0.8.3"
alloy-rlp = "0.3.8"
alloy-rpc-client = "0.4.2"
alloy-rpc-types = "0.4.2"
alloy-transport-ws = "0.4.2"
anyhow = "1.0.79"
async-trait = "0.1"
bincode = "1.3"
clap = "4.5.18"
eyre = "0.6"
futures-util = "0.3.30"
log = "0.4"
prometheus = "0.13"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tempfile = "3.10.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[patch.crates-io]
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1.git' }