[package]
edition = "2021"
name = "bytebox"
version = "0.2.1"
build = "build.rs"
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]
async-fs = [
"async-trait",
"dep:async-fs",
]
default = []
tokio = [
"async-trait",
"dep:tokio",
]
[lib]
name = "bytebox"
path = "src/lib.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[dependencies.async-fs]
version = "2.2.0"
optional = true
[dependencies.async-trait]
version = "0.1.89"
optional = true
[dependencies.bitcode]
version = "0.6.9"
features = ["serde"]
[dependencies.chacha20poly1305]
version = "0.10.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1.51.0"
features = ["fs"]
optional = true
[build-dependencies.cfg_aliases]
version = "0.2.1"
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "openbsd"))'.dependencies.keyring]
version = "3.6.3"
features = ["linux-native"]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.keyring]
version = "3.6.3"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3.6.3"
features = ["windows-native"]