2025-06-19 23:16:57 -03:00
|
|
|
[package]
|
|
|
|
name = "gbserver"
|
2024-12-22 20:56:52 -03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2025-06-19 23:16:57 -03:00
|
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
|
|
description = "File server with MinIO integration"
|
2024-12-22 20:56:52 -03:00
|
|
|
license = "MIT"
|
2025-06-19 23:16:57 -03:00
|
|
|
repository = ""
|
2024-12-22 20:56:52 -03:00
|
|
|
|
2025-06-19 23:16:57 -03:00
|
|
|
[dependencies]
|
|
|
|
actix-web = "4"
|
|
|
|
actix-multipart = "0.6"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2025-03-11 09:17:04 -03:00
|
|
|
log = "0.4"
|
2024-12-22 20:56:52 -03:00
|
|
|
tracing = "0.1"
|
2025-06-19 23:16:57 -03:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
2025-03-08 21:51:28 -03:00
|
|
|
dotenv = "0.15"
|
2025-06-19 23:16:57 -03:00
|
|
|
tempfile = "3"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
minio = { git = "https://github.com/minio/minio-rs", branch = "master" }
|
|
|
|
tokio-stream = "0.1.17"
|
2025-06-20 22:11:45 -03:00
|
|
|
jmap-client = "0.3.2"
|