Files
rrpsfd/Cargo.toml
2025-10-31 04:27:42 +03:00

38 lines
638 B
TOML

[package]
name = "rrpsfd"
version = "0.1.0"
edition = "2024"
[dependencies]
# Runner
tokio = { version = "1.48.0", features = ["full"] }
# Logger
chrono = "0.4.42"
# Database
ormlite = { version = "0.24.1", features = ["sqlite"] }
sqlx = "0.8.6"
# Docker
bollard = "0.19.3"
futures-util = "0.3.31"
async-trait = "0.1.89"
# Server [Listener]
actix-web = {version="4.11.0", features = ["openssl"]}
actix-ws = "0.3.0"
actix-http = { version = "3.11.2", features = ["ws"] }
openssl = "0.10.74"
# Server [Proxy]
reqwest = "0.12.24"
bytes = "1.10.1"
# Server [Socket Proxy]
tokio-tungstenite = "0.28.0"
# Tls
ssl-expiration2 = "0.4.0"