[package] name = "yt-offline" version = "0.1.0" edition = "2021" description = "Self-hosted archive for YouTube, TikTok, Twitch, Vimeo, Bandcamp, SoundCloud, Odysee and more. Desktop GUI + web UI, bundled yt-dlp with curl_cffi impersonation, Plex export, SQLite-backed resume tracking. AGPL-3.0." [dependencies] eframe = "0.29" image = { version = "0.25", default-features = false, features = ["webp", "jpeg", "png"] } toml = "0.8" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" rusqlite = { version = "0.31", features = ["bundled"] } r2d2 = "0.8" r2d2_sqlite = "0.24" notify-rust = { version = "4", default-features = false, features = ["z"] } axum = { version = "0.7", features = ["macros"] } tokio = { version = "1", features = ["full"] } tokio-util = { version = "0.7", features = ["io"] } tokio-stream = "0.1" tower-http = { version = "0.5", features = ["cors", "fs", "compression-gzip"] } argon2 = "0.5" rand = "0.8" # File-picker dialog for the desktop GUI. xdg-portal backend keeps it pure-Rust # (zbus, no GTK/libdbus build dep), consistent with notify-rust above. rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "tokio"] } [profile.release] opt-level = 2