Skip to content

Commit ce8762b

Browse files
committed
build: bump dependencies; declare subcrates in virtual manifest
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I5de5efd422a64839ce5117e70c60e6d86a6a6964
1 parent b79a551 commit ce8762b

4 files changed

Lines changed: 27 additions & 26 deletions

File tree

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ members = [ "watt", "xtask" ]
44
resolver = "3"
55

66
[workspace.package]
7-
authors = [ "NotAShelf <raf@notashelf.dev>", "RGBCube <git@rgbcu.be>" ]
87
description = "Modern CPU frequency and power management utility for Linux"
98
edition = "2024" # Keep in sync with .rustfmt.toml.
109
license = "MPL-2.0"
@@ -14,23 +13,27 @@ rust-version = "1.88"
1413
version = "1.1.0"
1514

1615
[workspace.dependencies]
16+
# Workspace components
17+
watt = { path = "./watt", version = "1.1.0" }
18+
19+
# Other dependencies
1720
anyhow = "1.0.102"
1821
clap = { features = [ "derive", "env" ], version = "4.6.1" }
1922
clap-verbosity-flag = "3.0.4"
20-
clap_complete = "4.6.2"
23+
clap_complete = "4.6.5"
2124
clap_complete_nushell = "4.6.0"
2225
env_logger = "0.11.10"
2326
humantime = "2.3.0"
24-
jiff = "0.2.24"
25-
log = "0.4.29"
26-
nix = { features = [ "fs", "process", "signal" ], version = "0.31.2" }
27+
jiff = "0.2.28"
28+
log = "0.4.32"
29+
nix = { features = [ "fs", "process", "signal" ], version = "0.31.3" }
2730
num_cpus = "1.17.0"
2831
serde = { features = [ "derive" ], version = "1.0.228" }
2932
tiny_http = "0.12.0"
3033
tokio = { features = [ "macros", "rt-multi-thread", "signal", "time" ], version = "1.52.3" }
3134
toml = "1.1.2"
3235
yansi = { features = [ "detect-env", "detect-tty" ], version = "1.0.1" }
33-
zbus = { default-features = false, features = [ "tokio" ], version = "5.13.2" }
36+
zbus = { default-features = false, features = [ "tokio" ], version = "5.16.0" }
3437

3538
[profile.release]
3639
codegen-units = 1

watt/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "watt"
33
description.workspace = true
44
version.workspace = true
55
edition.workspace = true
6-
authors.workspace = true
76
rust-version.workspace = true
87

98
[lib]

xtask/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name = "xtask"
33
description.workspace = true
44
version.workspace = true
55
edition.workspace = true
6-
authors.workspace = true
76
rust-version.workspace = true
87
publish = false
98

@@ -12,7 +11,7 @@ name = "xtask"
1211
path = "main.rs"
1312

1413
[dependencies]
15-
watt.path = "../watt"
14+
watt.workspace = true
1615

1716
clap.workspace = true
1817
clap_complete.workspace = true

0 commit comments

Comments
 (0)