[package]
edition = "2021"
name = "bytebox"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High performance and secure data storage solution."
homepage = "https://github.com/drafteddev/bytebox"
documentation = "https://docs.rs/bytebox"
readme = "README.md"
keywords = [
"storage",
"config",
"serde",
]
categories = [
"config",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drafteddev/bytebox"
[features]
default = []
[lib]
name = "bytebox"
path = "src/lib.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[dependencies.bitcode]
version = "0.6.9"
features = ["serde"]
[dependencies.chacha20poly1305]
version = "0.10.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3.6.3"
features = ["linux-native"]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3.6.3"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3.6.3"
features = ["windows-native"]