forked from mattrglobal/bbs-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 956 Bytes
/
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
32
33
34
35
36
[package]
authors = ["Tobias Looker <[email protected]>", "Mike Lodder <[email protected]>"]
description = "WASM binding to bbs rust crate"
edition = "2021"
license = "Apache-2.0"
name = "wasm"
repository = "https://github.com/mattrglobal/bbs-signatures"
version = "0.1.1"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
console = ["console_error_panic_hook"]
[dependencies]
arrayref = "0.3"
bbs = { version = "0.4.1", default-features = false, features = ["wasm"] }
console_error_panic_hook = { version = "0.1.7", optional = true }
hkdf = "0.8"
js-sys = "0.3"
rand = { version = "0.7", features = ["wasm-bindgen"] }
pairing-plus = "0.19"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6.0"
sha2 = "0.8"
wasm-bindgen = "= 0.2.87"
wasm-bindgen-futures = "0.4.37"
web-sys = { version = "0.3.64", features = ['console'] }
[dev-dependencies]
wasm-bindgen-test = "0.3.37"
[profile.release]
lto = true
opt-level = "s"