rln/Cargo.toml

23 lines
503 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-04-23 17:55:24 +00:00
[dependencies]
rand = "0.4"
blake2 = "0.8.1"
sapling-crypto = { package = "sapling-crypto_ce", version = "0.1.2" }
2020-06-04 17:59:02 +00:00
hex = "0.4.2"
[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"