nodata/crates/nodata-storage/Cargo.toml
kjuulh c8f4bae1f2
feat: add s3 and deployment
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-11-17 16:07:58 +01:00

29 lines
582 B
TOML

[package]
name = "nodata-storage"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
tokio.workspace = true
uuid.workspace = true
tracing.workspace = true
prost.workspace = true
prost-types.workspace = true
bytes.workspace = true
async-trait.workspace = true
hex = "0.4.3"
sha2 = "0.10.8"
aws-config = { version = "1.5.10", features = [
"behavior-version-latest",
], optional = true }
aws-sdk-s3 = { version = "1.61.0", features = [
"behavior-version-latest",
], optional = true }
[features]
default = ["s3"]
s3 = ["dep:aws-config", "dep:aws-sdk-s3"]