faa7a0c056
Provider credentials are bootstrap config and never reach the database (DESIGN.md §10), so which providers exist is settled once at startup; which of them a search runs is the `providers_enabled` row the API reads per request. OpenSubtitles.com cannot be called without a registered API key, so without one it is not offered at all. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "arr-daemon"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "arr"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
arr-api = { workspace = true }
|
|
arr-compat = { workspace = true }
|
|
arr-core = { workspace = true }
|
|
arr-db = { workspace = true }
|
|
arr-dl = { workspace = true }
|
|
arr-indexer = { workspace = true }
|
|
arr-meta = { workspace = true }
|
|
arr-parse = { workspace = true }
|
|
arr-probe = { workspace = true }
|
|
arr-subs = { workspace = true }
|
|
axum = { workspace = true }
|
|
chrono = { workspace = true }
|
|
include_dir = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
toml = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
base64 = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|