[package] name = "privatebox" version = "0.1.1" description = "A small and easy to use API to encrypt your data." authors = ["Jordan Isaacs"] edition = "2018" license = "MIT" keywords = ["encryption", "storage", "container", "xchachapoly1305"] categories = ["cryptography", "no-std"] homepage = "https://github.com/jordanisaacs/privatebox" repository = "https://github.com/jordanisaacs/privatebox" readme = "README.md" [dependencies] chacha20poly1305 = { version = "0.8.0", default-features = false, features = ["xchacha20poly1305"] } zeroize = { version = "1.3.0", default-features = false } rand_core = { version = "0.6.2", default-features = false } [features] default = ["alloc"] alloc = ["chacha20poly1305/alloc"] [dev-dependencies] rand = "0.8.3" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docs_rs"]