diff --git a/Cargo.toml b/Cargo.toml index 4d3136e4..85fd88fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ keywords = ["cli", "shell", "sh", "bash", "script"] license = "MIT" readme = "README.md" repository = "https://github.com/reubeno/brush" -version = "0.1.0" [workspace.lints.rust] missing_docs = "warn" diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index 96bb9a5a..35b9bb8c 100644 --- a/brush-core/Cargo.toml +++ b/brush-core/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "brush-core" description = "Reusable core of a POSIX/bash shell (used by brush-shell)" +version = "0.1.0" categories.workspace = true edition.workspace = true keywords.workspace = true license.workspace = true readme.workspace = true repository.workspace = true -version.workspace = true [lib] bench = false diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index 802d21ed..ae7171f7 100644 --- a/brush-interactive/Cargo.toml +++ b/brush-interactive/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "brush-interactive" description = "Interactive layer of brush-shell" +version = "0.1.0" authors.workspace = true categories.workspace = true edition.workspace = true @@ -8,7 +9,6 @@ keywords.workspace = true license.workspace = true readme.workspace = true repository.workspace = true -version.workspace = true [lib] bench = false diff --git a/brush-parser/Cargo.toml b/brush-parser/Cargo.toml index 31d1262e..65a598d9 100644 --- a/brush-parser/Cargo.toml +++ b/brush-parser/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "brush-parser" description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)" +version = "0.1.0" authors.workspace = true categories.workspace = true edition.workspace = true @@ -8,7 +9,6 @@ keywords.workspace = true license.workspace = true readme.workspace = true repository.workspace = true -version.workspace = true [lib] bench = false diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index f1a28559..dd2cce6a 100644 --- a/brush-shell/Cargo.toml +++ b/brush-shell/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "brush-shell" description = "Rust-implemented shell focused on POSIX and bash compatibility" +version = "0.1.0" authors.workspace = true categories.workspace = true edition.workspace = true @@ -8,7 +9,6 @@ keywords.workspace = true license.workspace = true readme.workspace = true repository.workspace = true -version.workspace = true [[bin]] name = "brush"