2023-06-01 22:02:47 +02:00
|
|
|
[package]
|
|
|
|
name = "file-storage-adapter"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-24 14:54:46 +02:00
|
|
|
async-trait = { workspace = true }
|
2023-06-01 22:02:47 +02:00
|
|
|
config = { path = "../config" }
|
|
|
|
futures = { version = "0.3.28", features = ["async-await", 'io-compat'] }
|
2024-06-24 14:54:46 +02:00
|
|
|
futures-util = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2023-06-03 13:31:57 +02:00
|
|
|
tracing = { version = "0.1.37" }
|