-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.02 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
[package]
name = "system76-power"
version = "1.2.8"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
edition = "2021"
rust-version = "1.75.0"
[workspace]
members = [ "zbus" ]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
concat-in-place = "1.1.0"
fern = "0.6"
futures-lite = "2.3.0"
hidapi = "1.5"
inotify = "0.10"
intel-pstate = "1.0.1"
libc = "0.2"
log = "0.4"
once_cell = "1.19.0"
serde_json = "1.0"
serde.workspace = true
sysfs-class = { git = "https://github.com/pop-os/sysfs-class" }
system76-power-zbus = { path = "zbus" }
thiserror = "1.0"
tokio = { version = "1.37", features = ["macros", "rt", "time", "signal"] }
zbus = { version = "3.15.2", default-features = false, features = [ "tokio"] }
zbus_polkit = { version = "3.0.0", features = ["tokio"] }
zvariant = "3.15.2"
[dev-dependencies]
env_logger = "0.11"
[lints.clippy]
match_like_matches_macro = "allow"
missing_safety_doc = "allow"
single_match = "allow"