[package] name = "fedimint-tpe" version = { workspace = true } authors = ["The Fedimint Developers"] edition = "2021" description = "tpe is a helper cryptography library for threshold point encryption" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] unstable = [] [lib] name = "tpe" path = "src/lib.rs" [dependencies] bitcoin_hashes = { workspace = true } bls12_381 = { workspace = true } fedimint-core = { version = "=0.4.3", path = "../../fedimint-core/" } group = { workspace = true } rand = { workspace = true } rand_chacha = { workspace = true } serde = { workspace = true } serde-big-array = { workspace = true }