-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
34 lines (32 loc) · 831 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
33
34
[package]
name = "alloy-zksync"
version = "0.9.0"
edition = "2021"
authors = ["Igor Aleksanov <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "ZKsync network implementation for alloy"
[dependencies]
alloy = { version = "0.9.2", default-features = false, features = [
"rlp",
"serde", # TODO: Make optional along with other `serde` dependencies
"rpc-types",
"signer-local",
"reqwest",
"contract",
] }
async-trait = "0.1.80"
chrono = { version = "0.4.38", features = ["serde"] }
k256 = "0.13.3"
rand = "0.8.5"
reqwest = "0.12.8"
serde = "1.0.203"
thiserror = "2.0.10"
tracing = "0.1.40"
url = "2.5.2"
[dev-dependencies]
tokio = { version = "1.43.0", features = ["full"] }
anyhow = "1"
hex = "0.4.3"
assert_matches = "1.5.0"
serde_json = "1.0.1"
jsonrpsee = { version = "0.24.7", features = ["server"] }