AI-generate first working version of the app

This commit is contained in:
2025-08-11 00:20:14 +02:00
parent 90e7e26f79
commit b5556a78ac
13 changed files with 5232 additions and 3 deletions

View File

@@ -1,6 +1,30 @@
[package]
name = "AutoJellyProxy"
version = "0.1.0"
edition = "2024"
edition = "2021"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors"] }
tokio-tungstenite = "0.21"
futures-util = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
rusqlite = { version = "0.31", features = ["bundled"] }
ssh2 = "0.9"
sha2 = "0.10"
hex = "0.4"
pbkdf2 = { version = "0.12", features = ["simple"] }
hmac = "0.12"
dotenv = "0.15"
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4"] }
base64 = "0.22"
url = "2.5"
urlencoding = "2.1"