-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 2.1 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
[package]
name = "avail-prover-demo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.5.1"
tokio = { version = "1", features = ["full"] }
openssl = { version = "0.10", features = ["vendored"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
derive_more = "0.99.17"
rand = "0.8.5"
secp256k1 = "0.28.0"
dotenv = "0.15.0"
validator = { version = "0.16", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
hex = "0.4"
aes-gcm = "0.10.3"
ecies = { version = "0.2.7", features = ["std"] }
ethers ={version = "2.0.10", features = ["abigen", "ws", "rustls"] }
async-trait = "0.1.81"
reqwest = { version = "0.12.5", features = ["json"]}
snarkvm = { features = [], git = "https://github.com/AleoNet/snarkVM", rev = "d170a9f", optional = true }
kalypso_helper = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "master", package = "helper" }
kalypso_ivs_models = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "master", package = "ivs" }
kalypso_generator_models = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "master", package = "generator" }
bindings = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "master", package = "foundry-contracts" }
kalypso_matching_engine_models = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "master", package = "matching_engine" }
# kalypso_helper = { path = "../kalypso-unified/helper", package = "helper" }
# kalypso_ivs_models = { path = "../kalypso-unified/ivs", package = "ivs" }
# kalypso_generator_models = { path = "../kalypso-unified/generator", package = "generator" }
# bindings = { path = "../kalypso-unified/bindings", package = "foundry-contracts" }
# kalypso_matching_engine_models = { path = "../kalypso-unified/matching_engine", package = "matching_engine" }
[dev-dependencies]
actix-rt = "2"
actix-web = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[features]
default = ["snarkvm"]
snarkvm = ["dep:snarkvm"]