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

18 lines
447 B
TOML
Raw Permalink Normal View History

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