forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 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
[package]
name = "zksync"
version = "0.3.0"
authors = ["The Matter Labs Team <[email protected]>"]
edition = "2018"
[dependencies]
zksync_types = { path = "../../core/lib/types", version = "1.0" }
zksync_eth_client = { path = "../../core/lib/eth_client", version = "1.0", default-features = false}
zksync_eth_signer = { path = "../../core/lib/eth_signer", version = "1.0" }
zksync_config = { path = "../../core/lib/config", version = "1.0" }
zksync_crypto = { path = "../../core/lib/crypto", version = "1.0" }
zksync_utils = { path = "../../core/lib/utils", version = "1.0" }
sha2 = "0.8"
web3 = "0.18.0"
ethabi = "16.0.0"
tokio = { version = "1", features = ["time"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonrpc-core = "17"
num = { version = "0.3.1", features = ["serde"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
thiserror = "1.0"
async-trait = "0.1"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
hex = "0.4"
[features]
integration-tests = []
mint = []