[package] name = "conundrum" version = "0.1.0" edition = "2021" description = "Hard-to-misuse crypto primitives with purpose scoping." license = "CC-BY-NC-ND-4.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chacha20 = "0.9.0" chacha20poly1305 = "0.9.0" generic-array= {version = "0.14.0", features = ["serde"]} ed25519-dalek = {version = "1.0.1", features = ["serde"]} blake3 = "1.2.0" ed25519 = {version = "1.5.2", features = ["serde_bytes"]} crypto_box = {version = "0.7.2", features = ["serde"]} rand07 = {package = "rand", version = "0.7.0"} rand08 = {package = "rand", version = "0.8.4"} thiserror = "1.0" litl = {path = "../litl", version = "0.1.0"} serde = "1.0.137" serde_derive = "1.0.137" serde_bytes = "0.11.6" zeroize = "1.3"