gbserver/Cargo.toml
Rodrigo Rodriguez (Pragmatismo) c75095505b
Some checks failed
GBCI / build (push) Failing after 8m43s
Implement email, meeting, proxy, and webmail services with LXC containers
- Added email service setup script to configure Stalwart Mail in a container.
- Created meeting service script to install and configure LiveKit with TURN server.
- Developed proxy service script to set up Caddy as a reverse proxy.
- Implemented webmail service script to deploy Roundcube with PHP support.
- Established system service files for each service to manage their lifecycle.
- Configured persistent storage for logs, data, and configuration for all services.
- Added integration tests for email listing and file upload functionalities.
- Updated prompt guidelines for consistent directory structure and user management.
2025-06-19 23:16:57 -03:00

22 lines
585 B
TOML

[package]
name = "gbserver"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "File server with MinIO integration"
license = "MIT"
repository = ""
[dependencies]
actix-web = "4"
actix-multipart = "0.6"
tokio = { version = "1", features = ["full"] }
log = "0.4"
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"