bazzar/crates/file-storage-local-plugin/Cargo.toml
2024-06-24 14:54:46 +02:00

18 lines
447 B
TOML

[package]
name = "file-storage-local"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
async-trait = { workspace = true }
file-storage-adapter = { path = "../file-storage-adapter" }
futures = { version = "0.3.28" }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
tracing = { version = "0.1" }
uuid = { workspace = true, features = ["v4"] }