rln/Cargo.toml

30 lines
802 B
TOML
Raw Normal View History

2020-04-23 17:55:24 +00:00
[package]
name = "rln"
version = "0.1.0"
2020-06-04 17:59:02 +00:00
authors = ["Onur Kılıç <kiliconu@itu.edu.tr>"]
2020-04-23 17:55:24 +00:00
edition = "2018"
2020-06-04 17:59:02 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2020-06-07 15:36:18 +00:00
[features]
default = ["sapling_multicore"]
wasm = ["sapling_wasm"]
bellman_wasm = ["bellman/wasm", "bellman/nolog"]
sapling_wasm = ["sapling-crypto/wasm"]
sapling_multicore = ["sapling-crypto/multicore"]
2020-04-23 17:55:24 +00:00
[dependencies]
rand = "0.4"
blake2 = "0.8.1"
2020-06-07 15:36:18 +00:00
sapling-crypto = { package = "sapling-crypto_ce", version = "0.1.3", default-features = false }
bellman = { package = "bellman_ce", version = "0.3.4", default-features = false }
2020-06-04 17:59:02 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = { version = "0.1.1" }
wasm-bindgen = "0.2"
wee_alloc = "0.4.5"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.2"