bazzar/crates/file-storage-local-plugin/Cargo.toml
2023-06-03 13:31:57 +02:00

18 lines
455 B
TOML

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