-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 794 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 794 Bytes
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 = "intmax"
version = "2.2.1-alpha"
edition = "2021"
[dependencies]
anyhow = "1.0"
ctrlc = "3.2"
curl = "0.4.44"
dialoguer = "0.10"
dirs = "4.0"
dotenv = "0.15"
hex = "0.4"
intmax-rollup-interface = { git = "https://github.com/InternetMaximalism/intmax-rollup-interface", rev = "51c62fa" }
intmax-interoperability-plugin = { path = "./packages/intmax-interoperability-plugin" }
num-bigint = "0.4"
regex = "1"
reqwest = { version = "0.11", features = ["json"] }
serde = "1.0"
serde_json = "1.0"
structopt = "0.3"
tokio = { version = "1.18", features = ["macros"] }
rand = "0.8.5"
[features]
default = ["parallel", "interoperability"]
verbose = ["advanced"]
parallel = ["intmax-rollup-interface/parallel"]
advanced = []
enable-polygon-zkevm = []
interoperability = []
bridge = []