[package] name = "AmanitaMuscaria" version = "0.0.5" edition = "2021" description = "A Cryptography Library written in Rust using multiple different algorithms like BLS, Schnorr, and Falcon" author = ["AtropineTears","NightshadeLabs"] keywords = ["cryptography","post-quantum","bls","falcon","nightshadelabs"] license = "MIT OR Apache-2.0" categories = ["cryptography"] # 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" # Crypto ## BLS bls-signatures = "0.11.1" ## Schnorr Signature on Ristretto schnorrkel = {version = "0.10.2", features = ["serde"] } ## Falcon pqcrypto-falcon = { version = "0.2.10", features = ["serialization"] } pqcrypto-traits = "0.3.4" ## Ed25519 ed25519-dalek = "1.0.1" # Seed tiny-bip39 = "0.8.2" # Security 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"