-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.31 KB
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
[package]
name = "bitbar-wurstmineberg-status"
version = "2.2.1"
authors = ["Fenhl <fenhl@fenhl.net>"]
edition = "2024"
rust-version = "1.91" # nixpkgs stable
[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]
codegen-units = 1
lto = true
strip = true
[dependencies]
async-trait = "0.1"
bitbar = { version = "0.10", features = ["base64"] }
chrono = { version = "0.4", features = ["serde"] }
css-color-parser = "0.1.2"
directories = "6"
image = "0.25"
itertools = "0.14"
mimalloc = "0.1"
mime = "0.3"
num-traits = "0.2"
reqwest = { version = "0.13", default-features = false, features = ["charset", "gzip", "hickory-dns", "http2", "json", "query", "rustls-no-provider", "system-proxy", "zstd"] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serenity = { version = "0.12", default-features = false }
thiserror = "2"
timespec = { git = "https://github.com/fenhl/rust-timespec", branch = "main" }
url = { version = "2", features = ["serde"] }
wheel = { git = "https://github.com/fenhl/wheel", branch = "main", features = ["reqwest", "serde_json"] }
xdg = "3"