2025-02-24 11:40:46 -03:00
|
|
|
[package]
|
2025-02-25 09:00:35 -03:00
|
|
|
name = "gb-file"
|
2025-02-24 11:40:46 -03:00
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gb-core = { path = "../gb-core" }
|
|
|
|
async-trait= { workspace = true }
|
|
|
|
tokio= { workspace = true }
|
2025-03-08 18:11:09 -03:00
|
|
|
serde = { workspace = true , features = ["derive"] }
|
|
|
|
serde_json ={ workspace = true }
|
2025-02-25 09:00:35 -03:00
|
|
|
thiserror= { workspace = true }
|
2025-02-24 11:40:46 -03:00
|
|
|
tracing= { workspace = true }
|
2025-03-08 21:51:28 -03:00
|
|
|
futures ={ workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
jsonwebtoken = { workspace = true }
|
|
|
|
lettre= { workspace = true }
|
2025-03-09 22:35:57 -03:00
|
|
|
minio = { workspace = true }
|
|
|
|
actix-web ={ workspace = true }
|
|
|
|
actix-multipart ={ workspace = true }
|
2025-03-08 21:51:28 -03:00
|
|
|
sanitize-filename = { workspace = true }
|
2025-03-09 11:28:47 -03:00
|
|
|
tempfile = { workspace = true }
|
2025-03-08 21:51:28 -03:00
|
|
|
|
2025-02-24 11:40:46 -03:00
|
|
|
[dev-dependencies]
|
|
|
|
rstest= { workspace = true }
|
|
|
|
tokio-test = "0.4"
|
|
|
|
tempfile = "3.8"
|