mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
110 lines
1.9 KiB
TOML
110 lines
1.9 KiB
TOML
[package]
|
|
name = "sapvi"
|
|
version = "0.1.0"
|
|
authors = ["narodnik <x@x.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "sapvi"
|
|
|
|
[dependencies]
|
|
ff = "0.8"
|
|
group = "0.8"
|
|
bellman = { version = "0.8", default-features = false, features = ["groth16"] }
|
|
bls12_381 = "0.3.1"
|
|
jubjub = "0.5.1"
|
|
|
|
zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
|
|
zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
|
|
#zcash_proofs = { git = "https://github.com/narodnik/librustzcash" }
|
|
#bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
|
|
rand = "0.7.3"
|
|
rand_core = "0.5.1"
|
|
sha2 = "0.9.1"
|
|
rand_xorshift = "0.2"
|
|
blake2s_simd = "0.5"
|
|
bitvec = "0.18"
|
|
bimap = "0.5.2"
|
|
async-trait = "0.1.42"
|
|
multimap = "0.8.2"
|
|
|
|
hex = "0.4.2"
|
|
num_enum = "0.5.0"
|
|
|
|
lazy_static = "1.4.0"
|
|
itertools = "0.8.0"
|
|
#fnv = "1.0.6"
|
|
regex = "1"
|
|
|
|
simplelog = "0.7.4"
|
|
clap = "3.0.0-beta.1"
|
|
failure = "0.1.8"
|
|
failure_derive = "0.1.8"
|
|
log = "0.4"
|
|
ctrlc = "3.1.7"
|
|
serde_json = "1.0.61"
|
|
owning_ref = "0.4.1"
|
|
|
|
smol = "1.2.4"
|
|
futures = "0.3.5"
|
|
async-channel = "1.4.2"
|
|
async-executor = "1.4.0"
|
|
async-dup = "1.1.0"
|
|
async-std = "1.6.2"
|
|
easy-parallel = "3.1.0"
|
|
|
|
jsonrpc-core = "16.0.0"
|
|
http-types = "2.9.0"
|
|
async-h1 = "2.3.0"
|
|
async-native-tls = "0.3.3"
|
|
|
|
# GUI deps
|
|
anyhow = "1.0"
|
|
bytemuck = { version = "1.4", features = [ "derive" ] }
|
|
image = "0.23"
|
|
winit = "0.23"
|
|
shaderc = "0.7"
|
|
cgmath = "0.17"
|
|
env_logger = "0.7"
|
|
wgpu = "0.7"
|
|
wgpu_glyph = "0.11"
|
|
tobj = "2.0.4"
|
|
|
|
# used by compile-shaders
|
|
fs_extra = "1.2"
|
|
glob = "0.3"
|
|
|
|
[[bin]]
|
|
name = "lisp"
|
|
path = "lisp/lisp.rs"
|
|
|
|
[[bin]]
|
|
name = "zkvm"
|
|
path = "src/bin/zkvm.rs"
|
|
|
|
[[bin]]
|
|
name = "dfi"
|
|
path = "src/bin/dfi.rs"
|
|
|
|
[[bin]]
|
|
name = "mimc"
|
|
path = "src/old/mimc.rs"
|
|
|
|
[[bin]]
|
|
name = "mint-classic"
|
|
path = "src/bin/mint-classic.rs"
|
|
|
|
[[bin]]
|
|
name = "dfg"
|
|
path = "src/bin/dfg.rs"
|
|
|
|
[[bin]]
|
|
name = "compile-shaders"
|
|
path = "src/bin/compile-shaders.rs"
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|