[package]
edition = "2021"
name = "hexvault"
version = "1.1.1"
authors = ["Zawadi MC Nyachiya"]
build = false
exclude = [
"AG-docs/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cascading cell-partitioned encryption architecture."
homepage = "https://github.com/Z3DDIEZ/HexVault"
documentation = "https://docs.rs/hexvault"
readme = "README.md"
keywords = [
"security",
"encryption",
"architecture",
"cryptography",
"isolation",
]
categories = [
"cryptography",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Z3DDIEZ/HexVault"
[lib]
name = "hexvault"
path = "src/lib.rs"
[[example]]
name = "layered_access_demo"
path = "examples/layered_access_demo.rs"
[[example]]
name = "multi_tenant_demo"
path = "examples/multi_tenant_demo.rs"
[[test]]
name = "audit_sink"
path = "tests/audit_sink.rs"
[[test]]
name = "edge_traversal"
path = "tests/edge_traversal.rs"
[[test]]
name = "isolation"
path = "tests/isolation.rs"
[[test]]
name = "stack_ordering"
path = "tests/stack_ordering.rs"
[[test]]
name = "threat_model"
path = "tests/threat_model.rs"
[[bench]]
name = "kms_comparison_benchmark"
path = "benches/kms_comparison_benchmark.rs"
harness = false
[[bench]]
name = "traversal_benchmark"
path = "benches/traversal_benchmark.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ring]
version = "0.17"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.criterion]
version = "0.5"