[package] name = "recordbox" version = "0.1.1" edition = "2018" authors = ["KizzyCode Software Labs./Keziah Biermann "] keywords = [] categories = [] description = "This crate offers a simple API to encrypt ID:payload-style records like packets or files etc." license = "BSD-2-Clause OR MIT" repository = "https://github.com/KizzyCode/recordbox-rust" readme = "README.md" [badges] appveyor = { repository = "KizzyCode/recordbox-rust" } [features] default = ["random", "impl_chachapoly"] random = ["crypto_api_osrandom"] impl_chachapoly = ["crypto_api_chachapoly"] [dependencies] ebacktrace = "0.3" crypto_api_osrandom = { version = "0.1", optional = true } crypto_api_chachapoly = { version = "0.5", optional = true } [dev-dependencies] hex = "0.4" [profile.release] overflow-checks = true [profile.bench] overflow-checks = true