-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 885 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
39
cargo-features = ["codegen-backend"]
[package]
name = "hypr-toolbox"
version = "0.1.0"
edition = "2021"
authors = ["mxxntype <59417007+mxxntype@users.noreply.github.com>"]
[[bin]]
name = "hypr-toolbox"
path = "src/main.rs"
[profile.dev]
codegen-units = 512
codegen-backend = "cranelift"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "warn"
nursery = "warn"
complexity = "warn"
perf = "warn"
enum_glob_use = { level = "warn", priority = 1 }
single_match_else = { level = "allow", priority = 1 }
option_if_let_else = { level = "allow", priority = 1 }
or_fun_call = { level = "allow", priority = 1 }
[dependencies]
bon = "2.1.0"
clap = { version = "4.5.16", features = ["derive", "color"] }
color-eyre = "0.6.3"
dirs = "5.0.1"
hyprland = "0.4.0-beta.1"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
tap = "1.0.1"
thiserror = "1.0.63"