diff options
author | Ren Kararou <[email protected]> | 2023-11-15 16:55:13 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2023-11-15 16:55:13 -0600 |
commit | 25f2f5d358383a130754826b6547c79f5d5ab50e (patch) | |
tree | 94d132ac0ce8225310af3864d8e525c82789b248 /Cargo.toml | |
parent | 80c9771e932e8d665ee127dc78bd2f6a6794243f (diff) | |
download | k2spice-25f2f5d358383a130754826b6547c79f5d5ab50e.tar.gz k2spice-25f2f5d358383a130754826b6547c79f5d5ab50e.tar.bz2 k2spice-25f2f5d358383a130754826b6547c79f5d5ab50e.zip |
use workspace more aggressively for dependency alignment
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index a28f711..9cf911b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,6 @@ [workspace] resolver = "2" members = [ - # userspace commands "usr/src/mei/true", "usr/src/mei/pwd", "usr/src/mei/yes", @@ -10,3 +9,16 @@ members = [ "usr/src/mei/false", "usr/src/mei/hostname", ] + +[workspace.package] +version = "0.1.0" +edition = "2021" +authors = ["Ren Kararou <[email protected]>", "Ezra Barrow <[email protected]>"] +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"] } + |