-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
62 lines (55 loc) · 1.75 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "recover_state_server"
version = "0.1.0"
edition = "2021"
authors = ["N Labs Team<nevermore@zklink.org>"]
homepage = "https://zk.link/"
repository = "https://github.com/zkLinkProtocol/zklink-periphery"
license = "Apache-2.0"
keywords = ["blockchain", "zklink"]
categories = ["cryptography"]
publish = false # We don't want to publish our binaries.
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.0"
actix-rt = "2.2.0"
actix-web = { version = "4" }
anyhow = "1.0"
bigdecimal = { version = "0.3.0" }
dotenvy = "0.15.1"
moka = { version = "0.10", features = ["future"] }
offchain_recover_state = { path = "offchain_recover_state", version = "0.1.0" }
recover_state_config = { path = "config", version = "0.1.0" }
serde = "1.0.137"
serde_json = "1.0"
structopt = "0.3.20"
tokio = { version = "1.0", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = "0.3"
zklink_crypto = { path = "zklink_circuit/crypto", version = "1.0" }
zklink_prover = { path = "prover", version = "1.0.0" }
zklink_storage = { path = "storage" }
zklink_types = { path = "zklink_circuit/common_types", version = "1.0" }
zklink_utils = { path = "zklink_circuit/utils", version = "1.0" }
[[bin]]
name = "exodus_server"
path = "src/main.rs"
[[bin]]
name = "exodus_prover"
path = "prover/src/main.rs"
[[bin]]
name = "recover_state"
path = "offchain_recover_state/src/main.rs"
[workspace]
members = [
"config",
"offchain_recover_state",
"prover",
"storage",
"zklink_circuit/basic_types",
"zklink_circuit/circuit",
"zklink_circuit/common_types",
"zklink_circuit/crypto",
"zklink_circuit/utils",
"zklink_state",
]