-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 1.23 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
[package]
name = "prover_and_ivs_template"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = {version = "4.5.1", features = ["rustls"] }
anyhow = "1.0.95"
async-trait = "0.1.81"
dotenv = "0.15.0"
env_logger = "0.11.6"
hex = "0.4.3"
kalypso_generator = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "generator" }
kalypso_ivs = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "ivs" }
kalypso_listener = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "listener" }
kalypso_generator_client = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "generator_client" }
kalypso_matching_engine_client = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "matching_engine_client" }
kalypso_matching_engine = { git = "https://github.com/marlinprotocol/kalypso-unified.git", branch = "mainnet", package = "matching_engine" }
log = "0.4"
tokio = { version = "1", features = ["full"] }
serde_json = "1.0.139"
[profile.dev]
panic = "abort"
debug = true
[profile.release]
strip = true
lto = true
panic = "abort"
codegen-units = 1