-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 810 Bytes
/
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
[package]
name = "nowplaying-ttv"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
twitch-irc = "5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
hyper = { version = "0.14", features = ["full"] }
url = "2.3"
open = "4"
colored = "2.0"
base64 = "0.21"
toml = "0.7"
self-meter = { git = "https://github.com/damaredayo/self-meter", branch = "master" }
sysinfo = "0.28"
clap = { version = "4.2", features = ["derive"] }
[target.'cfg(windows)'.dependencies]
ansi_term = "0.12"
[[bin]]
name = "nowplaying-ttv"
path = "bin/main.rs"
[[bin]]
name = "nowplaying-ttv-web"
path = "web/main.rs"
[lib]
name = "nowplaying_ttv_lib"
path = "lib/lib.rs"