/ crypto / tbs / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-tbs"
 3  version = "0.4.0-alpha"
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "tbs is a helper cryptography library for threshold blind signatures"
 7  license = "MIT"
 8  readme = "../../README.md"
 9  repository = "https://github.com/fedimint/fedimint"
10  
11  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12  
13  [features]
14  default = []
15  unstable = []
16  
17  [lib]
18  name = "tbs"
19  path = "src/lib.rs"
20  
21  [dependencies]
22  fedimint-core = { version = "=0.4.0-alpha", path = "../../fedimint-core/" }
23  bls12_381 = { workspace = true }
24  group = { workspace = true }
25  hex = { workspace = true }
26  rand = { workspace = true }
27  rand_chacha = { workspace = true }
28  serde = { workspace = true }
29  sha3 = "0.10.8"
30  
31  [dev-dependencies]
32  criterion = { workspace = true }
33  
34  [[bench]]
35  name = "tbs"
36  harness = false