-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
72 lines (65 loc) · 1.85 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
[package]
name = "quarky"
version = "0.0.2"
authors = [ "adumbidiot <nathaniel.daniel23@outlook.com>" ]
edition = "2021"
publish = false
license = "MIT"
[dependencies]
anyhow = "1.0.86"
argh = "0.1.12"
audiopus_sys = { version = "0.2.2", default-features = false }
camino = { version = "1.1.8", features = [ "serde1" ] }
# clokwerk = "0.4.0"
clokwerk = { git = "https://github.com/mdsherry/clokwerk" }
chrono = { version = "0.4.38", default-features = false }
fern = { version = "0.6.2", features = [ "colored" ] }
http = "1.1.0"
indexmap = "2.4.0"
lazy_static = "1.5.0"
log = "0.4.22"
rand = "0.8.5"
reddit = { git = "https://github.com/adumbidiot/reddit-rs", default-features = false, features = [ "rustls-tls" ] }
reqwest = { version = "0.11.27", default-features = false, features = [ "rustls-tls" ] }
rss-client = { path = "lib/rss-client", default-features = false, features = [ "rustls-tls" ] }
serde = { version = "1.0.208", features = [ "derive" ] }
serde_json = "1.0.125"
serenity = "0.12.2"
songbird = "=0.4.1"
thiserror = "1.0.63"
tokio = { version = "1.39.2", features = [ "rt-multi-thread", "signal" ] }
toml = "0.8.19"
zalgo = { git = "https://github.com/adumbidiot/zalgo-rs" }
poise = "0.6.1"
[features]
default = []
pkg-config = [
"audiopus_sys/pkg-config",
]
[profile.release]
lto = "fat"
codegen-units = 1
debug = false
opt-level = 3
debug-assertions = false
strip = "symbols"
[patch.crates-io]
audiopus_sys = { git = "https://github.com/adumbidiot/audiopus_sys", branch = "pkg-config" }
[workspace]
members = [
"lib/*"
]
[package.metadata.deb]
name = "quarky"
depends = [ "libopus0", "yt-dlp" ]
assets = [
[ "target/release/quarky", "usr/bin/", "700" ],
[ "deb-config.toml", "etc/quarky/config.toml", "600" ],
]
conf-files = [
"etc/quarky/config.toml",
]
maintainer-scripts = "debian/"
[package.metadata.deb.systemd-units]
enable = false
start = false