-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 1.28 KB
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
[package]
name = "split-prove-prototype"
version = "0.1.0"
edition = "2021"
[lib]
name = "split_prove"
path = "src/lib.rs"
[[bin]]
name = "split-prove-demo"
path = "src/main.rs"
[dependencies]
midnight-transient-crypto = { path = "deps/midnight-ledger/transient-crypto", package = "midnight-transient-crypto" }
midnight-coin-structure = { path = "deps/midnight-ledger/coin-structure", package = "midnight-coin-structure" }
midnight-zswap = { path = "deps/midnight-ledger/zswap", package = "midnight-zswap" }
midnight-ledger = { path = "deps/midnight-ledger/ledger", package = "midnight-ledger", default-features = false, features = ["proving"] }
midnight-zkir = { path = "deps/midnight-ledger/zkir", package = "midnight-zkir" }
midnight-base-crypto = { path = "deps/midnight-ledger/base-crypto", package = "midnight-base-crypto" }
midnight-onchain-runtime = { path = "deps/midnight-ledger/onchain-runtime", package = "midnight-onchain-runtime" }
midnight-serialize = { path = "deps/midnight-ledger/serialize", package = "midnight-serialize" }
midnight-storage = { path = "deps/midnight-ledger/storage", package = "midnight-storage", default-features = false }
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
anyhow = "1"
hex = "0.4"