[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-export-s3"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "S3 ExportSink for CellOS — uploads per-cell evidence bundles to an S3 bucket for centralised audit retention."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-export-s3"
readme = "README.md"
keywords = [
"cellos",
"export",
"evidence",
"s3",
"audit",
]
categories = [
"asynchronous",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[lib]
name = "cellos_export_s3"
path = "src/lib.rs"
[[test]]
name = "retry_semantics"
path = "tests/retry_semantics.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "timeout_contract"
path = "tests/timeout_contract.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.cellos-core]
version = "0.7.2"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"stream",
"json",
]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt",
"macros",
"fs",
"io-util",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.zeroize]
version = "1.8"
features = [
"std",
"alloc",
"derive",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt-multi-thread",
"macros",
]
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"