forked from hyperledger-archives/ursa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 939 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
37
38
39
40
41
42
[package]
authors = ["The Hyperledger Ursa Contributors"]
description = "A collection of cryptography primitives for implementing blockchain transactions and secure communication"
documentation = "https://doc.rs/ursa"
edition = "2018"
homepage = "https://crates.io/crates/ursa"
keywords = ["cryptography", "zero-knowledge"]
license = "Apache-2.0"
name = "ursa"
readme = "README.md"
repository = "https://github.com/hyperledger/ursa"
version = "0.5.0"
[badges]
maintenance = { status = "actively-developed" }
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
[profile.release]
lto = true
[workspace]
members = [
"ursa_accumulators",
"ursa_core",
"ursa_encryption",
"ursa_sharing",
"ursa_shortgroupsignatures",
"ursa_signatures"
]
exclude = [
"libursa"
]
[features]
default = ["sharing"]
sharing = ["ursa_sharing"]
[dependencies]
ursa_sharing = { version = "0.1", path = "ursa_sharing", optional = true }