Skip to content

Commit 23d363e

Browse files
committed
style: Reorder Cargo.toml fields for consistency
The `Cargo.toml` file for the `pid1-exe` crate has been restructured to improve readability and consistency.
1 parent 3f3e141 commit 23d363e

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

pid1-exe/Cargo.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@
22
name = "pid1-exe"
33
version = "0.1.5"
44
edition = "2021"
5+
description = "pid1 handling library for proper signal and zombie reaping of the PID1 process"
56
readme = "../README.md"
67
homepage = "https://github.com/fpco/pid1-rs"
78
repository = "https://github.com/fpco/pid1-rs"
89
license = "MIT"
9-
description = "pid1 handling library for proper signal and zombie reaping of the PID1 process"
10-
keywords = ["init", "pid1", "process", "cli"]
10+
keywords = ["cli", "init", "pid1", "process"]
1111
categories = ["command-line-utilities"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

14-
[dependencies]
15-
pid1 = { path = "../pid1" }
16-
signal-hook = "0.3.18"
17-
clap = { version = "4.5.41", default-features = false, features = ["std", "derive", "help"]}
18-
1914
[[bin]]
2015
name = "pid1"
2116
path = "src/main.rs"
17+
18+
[dependencies]
19+
clap = { version = "4.5.41", default-features = false, features = [
20+
"derive",
21+
"help",
22+
"std",
23+
] }
24+
pid1 = { version = "0.1.5", path = "../pid1" }
25+
signal-hook = "0.3.18"

0 commit comments

Comments
 (0)