This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
86 lines (79 loc) · 2.08 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
83
84
85
86
[package]
name = "locast2tuner"
version = "0.3.11"
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 = ""
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.8"
again = "0.1.2"
async-trait = "0.1.50"
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.16"
dirs = "3.0.2"
format_xml = "0.2.0"
futures = "0.3.15"
fuzzy-matcher = "0.3.7"
hls_m3u8 = "0.4.1"
htmlescape = "0.3.1"
itertools = "0.10.1"
lazy_static = "1.4.0"
log = "0.4.14"
prettytable-rs = "0.8.0"
rand = "0.8.4"
regex = "1.5.4"
# Vendored native-tls, otherwise raspberry pi build breaks
reqwest = { version = "0.11.4", features = ["json", "native-tls-vendored"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
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.9.0"
timer = "0.2.0"
tokio = "1.8.1"
toml = "0.5.8"
tz-search = "0.1.1"
url = "2.2.2"
uuid = { version = "0.8.2", features = ["serde", "v4", "v5"] }
zip = "0.5.13"
zip_codes_plus = "0.2.0"
[target.'cfg(unix)'.dependencies]
slog-syslog = "0.12.0"
[build-dependencies]
rustc_version = "0.4.0"
# [profile.release]
# panic = "abort"
# debug = false
# lto = true
[dev-dependencies]
cargo-bump = "1.1.0"
rustfmt = "0.10.0"