-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (48 loc) · 1.72 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "podbringer"
version = "0.5.4"
authors = ["Paul van Tilburg <[email protected]>"]
edition = "2021"
description = "Web service that provides podcasts for services that don't offer them (anymore)"
readme = "README.md"
repository = "https://git.luon.net/paul/podbringer"
license = "MIT"
[dependencies]
async-trait = "0.1.57"
cached = { version = "0.54.0", features = ["async"] }
chrono = { version = "0.4.19", features = ["serde"] }
enum_dispatch = "0.3.8"
mime-db = "1.6.0"
reqwest = { version = "0.12.0", features = ["json"] }
rocket = { version = "0.5.0-rc.3", features = ["json"] }
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
rss = "2.0.1"
thiserror = "2.0.0"
url = { version = "2.2.2", features = ["serde"] }
youtube_dl = { version = "0.10.0", features = ["tokio"] }
ytextract = "0.11.2"
[package.metadata.deb]
maintainer = "Paul van Tilburg <[email protected]>"
copyright = "2022, Paul van Tilburg"
depends = "$auto, systemd"
extended-description = """\
Podbringer is a web service that provides podcasts for services that don't
offer them (anymore). It provides a way to get the RSS feed for your podcast
client and it facilites the downloads of the pods (enclosures).
It currently only supports [Mixcloud](https://www.mixcloud.com) and
[YouTube](https://www.youtube.com).
Other back-ends might be added in the future.
"""
section = "net"
priority = "optional"
assets = [
["README.md", "usr/share/doc/podbringer/", "664"],
["Rocket.toml.example", "/etc/podbringer.toml", "644"],
["target/release/podbringer", "usr/sbin/podbringer", "755"],
["templates/*", "usr/share/podbringer/templates", "755"]
]
conf-files = [
"/etc/podbringer.toml"
]
maintainer-scripts = "debian/"
systemd-units = { unit-name = "podbringer" }