bazzar/crates/file-storage-s3-plugin/Cargo.toml

19 lines
468 B
TOML
Raw Permalink Normal View History

2023-06-03 13:31:57 +02:00
[package]
name = "file-storage-s3"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
file-storage-adapter = { workspace = true }
futures = { version = "0.3.28" }
2024-06-24 14:54:46 +02:00
rust-s3 = { workspace = true, features = ["with-tokio"] }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true }
2023-06-03 13:31:57 +02:00
tracing = { version = "0.1.37" }
2024-06-24 14:54:46 +02:00
async-trait = { workspace = true }
uuid = { workspace = true, features = ["v4"] }