[package] name = "cryptobox" edition = "2018" version = "0.1.0" authors = ["Keziah Biermann "] description = "A KISS CLI-wrapper around libsodium's `cryptobox_easy`" categories = ["cryptography"] keywords = ["security", "safe", "cryptography", "libsodium", "cryptobox"] license = "BSD-2-Clause OR MIT" repository = "https://github.com/KizzyCode/Cryptobox" readme = "README.md" [badges] travis-ci = { repository = "KizzyCode/Cryptobox" } appveyor = { repository = "KizzyCode/Cryptobox" } [[bin]] name = "cryptobox" [profile.release] overflow-checks = true [profile.bench] overflow-checks = true [features] default = [] use-maproper = ["ma_proper"] use-maproper-volatile = ["ma_proper/volatile_fallback"] [dependencies] ma_proper = { version = "0.1.1", optional = true } [build-dependencies] pkg-config = "0.3.14"