mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-16 14:12:14 +02:00
* refactor: extract source-neutral playlist curation * fix: keep curation matches within media kind --------- Co-authored-by: Juanjo Presa <juanjop@gmail.com>
51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[package]
|
|
name = "tuliprox-processing"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
description = "The playlist processing pipeline: fetch, parse, map, sort and persist a target's playlist and EPG"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
# Exposes helpers that are otherwise `#[cfg(test)]`, so the binary's tests can
|
|
# use them. Enabled only from `[dev-dependencies]`; never in a build.
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
shared = { workspace = true }
|
|
tuliprox-core = { workspace = true }
|
|
tuliprox-curation = { workspace = true }
|
|
tuliprox-iptv = { workspace = true }
|
|
tuliprox-library = { workspace = true }
|
|
tuliprox-media-server = { workspace = true }
|
|
tuliprox-parser = { workspace = true }
|
|
tuliprox-repository = { workspace = true }
|
|
tuliprox-session = { workspace = true }
|
|
arc-swap.workspace = true
|
|
chrono.workspace = true
|
|
futures.workspace = true
|
|
indexmap.workspace = true
|
|
log.workspace = true
|
|
lru = "0.16.4"
|
|
parking_lot = "0.12.5"
|
|
paste.workspace = true
|
|
path-clean.workspace = true
|
|
regex.workspace = true
|
|
reqwest = { version = "0.13.4", features = ["json", "stream", "rustls", "socks", "form", "query"] }
|
|
quick-xml = { version = "0.41", features = ["async-tokio", "serialize"] }
|
|
rphonetic = "3.1.0"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
strsim = "0.11.1"
|
|
tempfile = "3.27.0"
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot", "fs", "process", "signal", "time", "macros"] }
|
|
tokio-util = { version = "0.7.19", features = ["io", "io-util"] }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9.5"
|
|
rmp-serde = "1.3.1"
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|