-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "xmltv2rss"
version = "0.1.2"
authors = ["willemw12 <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
description = "Generate an RSS feed from an XMLTV TV listing."
homepage = "https://github.com/willemw12/xmltv2rss-rs"
#documentation = "https://github.com/willemw12/xmltv2rss-rs"
repository = "https://github.com/willemw12/xmltv2rss-rs"
readme = "README.md"
keywords = ["atom", "epg", "rss", "tv", "xmltv"]
categories = ["command-line-utilities"]
# [[bin]]
# name = "xmltv2rss"
# required-features = ["build-binary"]
#
# [features]
# build-binary = ["dep:clap"]
[dependencies]
atom_syndication = "0.12.3"
chrono = "0.4.38"
# clap = { version = "...", features = ["cargo", "derive"], optional = true }
clap = { version = "4.5.7", features = ["cargo", "derive"] }
derive_builder = "0.20.0"
quick-xml = { version = "0.33", features = ["serialize"] }
rss = "2.0.8"
thiserror = "1.0.61"
uuid = { version = "1.8.0", features = ["macro-diagnostics", "serde", "v4"] }
xmltv = "0.9.6"
[dev-dependencies]
pretty_assertions = "1.4.0"