meta: initial commit

This commit is contained in:
2026-01-14 14:00:27 -05:00
commit 16772a1378
6 changed files with 3600 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "mirror-plex-to-navidrome"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.54", features = ["derive", "env"] }
itertools = "0.14.0"
phf = { version = "0.13.1", features = ["macros", "uncased"] }
plex-api = "0.0.12"
reqwest = { version = "0.13.1", features = ["hickory-dns"] }
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
snafu = { version = "0.8.9", features = ["futures"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros", "fs"] }
uncased = "0.9.10"
url = { version = "2.5.8", features = ["serde"] }