forked from wouterdebie/locast2tuner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (75 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "locast2tuner"
version = "0.1.40"
description = "Locast.org to Plex Media Server/Emby integration server"
authors = ["Wouter de Bie <wouter@evenflow.nl>"]
repository = "https://github.com/wouterdebie/locast2tuner"
readme = "README.md"
license = "MIT"
edition = "2018"
[package.metadata.deb]
maintainer = "Wouter de Bie <wouter@evenflow.nl>"
copyright = "2021, Wouter de Bie <wouter@evenflow.nl>"
license-file = ["LICENSE", "0"]
extended-description = """\
Locast.org to Plex Media Server/Emby integration server"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["README.md", "usr/share/doc/locast2tuner/README", "644"],
["assets/config.example", "etc/locast2tuner/config.example", "644"],
["target/release/locast2tuner", "/usr/bin/locast2tuner", "755"],
]
maintainer-scripts = "assets/debian/"
systemd-units = { enable = false }
[dependencies]
actix-rt = "2.2.0"
actix-web = "4.0.0-beta.3"
again = "0.1.2"
async-trait = "0.1.48"
bytes = "1.0.1"
chrono = "0.4.19"
chrono-tz = "0.5.3"
clap = "3.0.0-beta.2"
clap_conf = "0.1.5"
derive_more = "0.99.13"
dirs = "3.0.1"
format_xml = "0.1"
futures = "0.3"
fuzzy-matcher = "0.3.7"
hls_m3u8 = "0.4"
htmlescape = "0.3.1"
itertools = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.14"
prettytable-rs = "^0.8"
regex = "1"
# Vendored native-tls, otherwise raspberry pi build breaks
reqwest = { version = "0.11", features = ["json", "native-tls-vendored"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0"
simple-error = "0.2.3"
slog = "2.7.0"
slog-async = "2.6.0"
slog-scope = "4.4.0"
slog-stdlog = "4.1.0"
slog-term = "2.8.0"
string-builder = "0.2.0"
sys-info = "0.8.0"
timer = "0.2.0"
tokio = "1.4.0"
toml = "0.5"
tz-search = "0.1.1"
url = "2.2.1"
uuid = { version = "0.8", features = ["serde", "v4", "v5"] }
zip = "0.5.10"
[target.'cfg(unix)'.dependencies]
slog-syslog = "0.12.0"
[build-dependencies]
rustc_version = "0.3.3"
[profile.release]
panic = "abort"
[dev-dependencies]
cargo-bump = "1.1.0"
rustfmt = "0.10.0"