[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-export-local"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-filesystem ExportSink for CellOS — writes per-cell evidence bundles to an operator-configured directory."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-export-local"
readme = "README.md"
keywords = [
"cellos",
"export",
"evidence",
"bundle",
"audit",
]
categories = [
"filesystem",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[lib]
name = "cellos_export_local"
path = "src/lib.rs"
[[test]]
name = "cellos_export_local_happy_path"
path = "tests/cellos_export_local_happy_path.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "symlink_attack"
path = "tests/symlink_attack.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.cellos-core]
version = "0.7.2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"io-util",
"macros",
"rt",
]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"