forked from mattrglobal/ffi-bbs-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 745 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (32 loc) · 745 Bytes
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
37
38
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
edition = "2018"
name = "ffi-bbs-signatures"
# Please ignore the below version this does not indicate the current package version
# instead please refer to ./package.json
version = "0.1.0"
[lib]
name = "bbs"
crate-type = ["staticlib", "cdylib"]
[profile.release]
lto = true
opt-level = 3
[profile.bench]
opt-level = 3
debug = false
[features]
default = []
java = ["jni"]
[dependencies]
arrayref = "0.3"
bbs = "0.4"
ffi-support = "0.4"
hkdf = "0.8"
jni = { version = "0.10", optional = true }
lazy_static = "1.4"
pairing-plus = "0.19"
rand = "0.7"
serde = { version = "1.0", features = ["serde_derive"] }
sha2 = "0.8"
[target.'cfg(target_os="android")'.dependencies]
jni = "0.10"