mirror of
https://git.sr.ht/~spicywolf/k2spice
synced 2025-01-18 17:59:39 +00:00
use workspace more aggressively for dependency alignment
This commit is contained in:
parent
80c9771e93
commit
25f2f5d358
14
Cargo.toml
14
Cargo.toml
|
@ -1,7 +1,6 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = [
|
members = [
|
||||||
# userspace commands
|
|
||||||
"usr/src/mei/true",
|
"usr/src/mei/true",
|
||||||
"usr/src/mei/pwd",
|
"usr/src/mei/pwd",
|
||||||
"usr/src/mei/yes",
|
"usr/src/mei/yes",
|
||||||
|
@ -10,3 +9,16 @@ members = [
|
||||||
"usr/src/mei/false",
|
"usr/src/mei/false",
|
||||||
"usr/src/mei/hostname",
|
"usr/src/mei/hostname",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
authors = ["Ren Kararou <ren@kararou.space>", "Ezra Barrow <barrow@tilde.team>"]
|
||||||
|
description = "CLA Approved Opinionated Systems Software"
|
||||||
|
documentation = "https://k2spice.lesbianunix.dev/"
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
nix = "0.27"
|
||||||
|
clap = { version = "4.4.8", features = ["derive"] }
|
||||||
|
serde = { version = "1.0.192", features = ["derive"] }
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "echo"
|
name = "echo"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "echo"
|
name = "echo"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "falsecmd"
|
name = "falsecmd"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "false"
|
name = "false"
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "hostname"
|
name = "hostname"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "hostname"
|
name = "hostname"
|
||||||
path = "src/hostname.rs"
|
path = "src/hostname.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nix = { version = "0.27", features = ["hostname"] }
|
nix = { workspace = true, features = ["hostname"] }
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "printf"
|
name = "printf"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "printf"
|
name = "printf"
|
||||||
|
@ -10,4 +13,4 @@ path = "src/printf.rs"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.4.8", features = ["derive"] }
|
clap.workspace = true
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pwd"
|
name = "pwd"
|
||||||
version = "0.0.1"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "pwd"
|
name = "pwd"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "truecmd"
|
name = "truecmd"
|
||||||
version = "0.0.1"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "true"
|
name = "true"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "yes"
|
name = "yes"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
description.workspace = true
|
||||||
|
documentation.workspace = true
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "yes"
|
name = "yes"
|
||||||
|
|
Loading…
Reference in a new issue