gbserver/Cargo.toml

23 lines
585 B
TOML
Raw Normal View History

[package]
name = "gbserver"
2024-12-22 20:56:52 -03:00
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "File server with MinIO integration"
2024-12-22 20:56:52 -03:00
license = "MIT"
repository = ""
2024-12-22 20:56:52 -03:00
[dependencies]
actix-web = "4"
actix-multipart = "0.6"
tokio = { version = "1", features = ["full"] }
log = "0.4"
2024-12-22 20:56:52 -03:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt"] }
dotenv = "0.15"
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"