-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.38 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
[package]
name = "systray-wurstmineberg-status"
version = "2.5.0"
authors = ["Fenhl <[email protected]>"]
edition = "2021"
repository = "https://github.com/wurstmineberg/systray"
[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]
clap = { version = "4.4.18", features = ["derive"] }
directories = "5.0.1"
itertools = "0.13"
log-lock = { git = "https://github.com/fenhl/log-lock", branch = "main" }
native-windows-derive = "1.0.5"
native-windows-gui = { version = "1.0.13", default-features = false, features = ["tray-notification", "high-dpi", "cursor", "message-window", "menu", "notice", "embed-resource"] }
open = "5.0.1"
registry = "1.2.3"
reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "rustls-tls"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { package = "serde_json_path_to_error", version = "0.1" }
serenity = { version = "0.12.0", default-features = false }
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "time"] }
wheel = { git = "https://github.com/fenhl/wheel", branch = "main", features = ["serde", "serde_json", "reqwest"] }
[build-dependencies]
winresource = "0.1"