-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 915 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
[package]
name = "bitbar-twitch"
version = "0.2.2"
authors = ["Fenhl <[email protected]>"]
edition = "2021"
[lints.rust]
rust_2018_idioms = "deny"
unsafe_code = "forbid"
unused = "deny"
unused_crate_dependencies = "deny"
unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
warnings = "deny"
[profile.release]
lto = true
strip = true
[dependencies]
bitbar = { version = "0.9", features = ["base64"] }
chrono = { version = "0.4", features = ["serde"] }
futures = { version = "0.3" }
itertools = "0.13"
reqwest = { version = "0.12", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = { package = "serde_json_path_to_error", version = "0.1" }
thiserror = "1"
timespec = { git = "https://github.com/fenhl/rust-timespec", branch = "main" }
twitch_helix = { git = "https://github.com/fenhl/rust-twitch-helix", branch = "main" }
url = "2"
xdg = "2"