Cargo.toml
1 [package] 2 name = "fedimint-tpe" 3 version = "0.4.0-alpha" 4 authors = ["The Fedimint Developers"] 5 edition = "2021" 6 description = "tpe is a helper cryptography library for threshold point encryption" 7 license = "MIT" 8 9 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 10 11 [features] 12 default = [] 13 unstable = [] 14 15 [lib] 16 name = "tpe" 17 path = "src/lib.rs" 18 19 [dependencies] 20 fedimint-core = { version = "=0.4.0-alpha", path = "../../fedimint-core/" } 21 bls12_381 = { workspace = true } 22 group = { workspace = true } 23 rand = { workspace = true } 24 rand_chacha = { workspace = true } 25 bitcoin_hashes = { workspace = true } 26 serde = { workspace = true } 27 serde-big-array = { workspace = true }