Skip to content

Commit

Permalink
fix: Reformat Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed Jan 15, 2025
1 parent e713f98 commit 5a46853
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 26 deletions.
9 changes: 8 additions & 1 deletion .taplo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[formatting]
indent_string = " "
indent_string = " "
reorder_arrays = true
reorder_keys = true

[[rule]]
include = ["**/Cargo.toml"]
keys = ["package"]

[rule.formatting]
reorder_keys = false
22 changes: 11 additions & 11 deletions pueue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
authors.workspace = true
name = "pueue"
version = "4.0.0-rc.1"
description = "A cli tool for managing long running shell commands."
readme = "../README.md"
keywords = ["command", "parallel", "queue", "shell", "task"]
authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = ["command", "parallel", "queue", "shell", "task"]
license.workspace = true
name = "pueue"
readme = "../README.md"
repository.workspace = true
rust-version.workspace = true
version = "4.0.0-rc.1"

[badges]
maintenance = { status = "actively-developed" }
Expand Down Expand Up @@ -60,14 +60,14 @@ test-log = "0.2"
crossterm = { version = "0.28", default-features = false }
[target.'cfg(windows)'.dependencies]
crossterm = { version = "0.28", default-features = false, features = [
"windows",
"windows",
] }
windows = { version = "0.58.0", features = [
"Win32_Security",
"Win32_System_Environment",
"Win32_System_RemoteDesktop",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_Security",
"Win32_System_Environment",
"Win32_System_RemoteDesktop",
"Win32_System_SystemServices",
"Win32_System_Threading",
] }
windows-service = "0.7.0"

Expand Down
28 changes: 14 additions & 14 deletions pueue_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
authors.workspace = true
name = "pueue-lib"
version = "0.27.0"
description = "The shared library to work with the Pueue client and daemon."
readme = "README.md"
keywords = ["pueue"]
authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = ["pueue"]
license.workspace = true
name = "pueue-lib"
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.27.0"

[badges]
maintenance = { status = "actively-developed" }
Expand All @@ -27,10 +27,10 @@ rand = "0.8"
rcgen = "0.13"
rev_buf_reader = "0.3"
rustls = { version = "0.23", features = [
"logging",
"ring",
"std",
"tls12",
"logging",
"ring",
"std",
"tls12",
], default-features = false }
rustls-pemfile = "2"
serde.workspace = true
Expand All @@ -56,11 +56,11 @@ tokio.workspace = true
# Windows
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"errhandlingapi",
"impl-default",
"minwindef",
"processthreadsapi",
"tlhelp32",
"errhandlingapi",
"impl-default",
"minwindef",
"processthreadsapi",
"tlhelp32",
] }

# Unix
Expand Down

0 comments on commit 5a46853

Please sign in to comment.