[package] name = "signatures-atropine" description = "Digital Signatures including BLS and Schnorr with BIP39" license = "MIT OR Apache-2.0" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # Randomness from CSPRNG getrandom = "0.2.3" rand = "0.8.4" rand_chacha = "0.3.1" bls-signatures = "0.11.1" schnorrkel = {version = "0.10.2", features = ["serde"] } tiny-bip39 = "0.8.2" zeroize = {version = "1.4.3", features = ["zeroize_derive"]} # Encoding hex = "0.4.3" base64 = "0.13.0" base32 = "0.4.0" bs58 = "0.4.0" # Hashing blake2-rfc = "0.2.18" # Log log = "0.4.14" # Serialization serde = {version = "1.0.123", features = ["derive"]} serde-big-array = "0.3.2" bincode = "1.3.3"