Skip to content

Commit 5400c82

Browse files
authored
build: split versions across crates (#73)
1 parent 6db7ffa commit 5400c82

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ keywords = ["cli", "shell", "sh", "bash", "script"]
1111
license = "MIT"
1212
readme = "README.md"
1313
repository = "https://github.com/reubeno/brush"
14-
version = "0.1.0"
1514

1615
[workspace.lints.rust]
1716
missing_docs = "warn"

brush-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "brush-core"
33
description = "Reusable core of a POSIX/bash shell (used by brush-shell)"
4+
version = "0.1.0"
45
categories.workspace = true
56
edition.workspace = true
67
keywords.workspace = true
78
license.workspace = true
89
readme.workspace = true
910
repository.workspace = true
10-
version.workspace = true
1111

1212
[lib]
1313
bench = false

brush-interactive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "brush-interactive"
33
description = "Interactive layer of brush-shell"
4+
version = "0.1.0"
45
authors.workspace = true
56
categories.workspace = true
67
edition.workspace = true
78
keywords.workspace = true
89
license.workspace = true
910
readme.workspace = true
1011
repository.workspace = true
11-
version.workspace = true
1212

1313
[lib]
1414
bench = false

brush-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "brush-parser"
33
description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)"
4+
version = "0.1.0"
45
authors.workspace = true
56
categories.workspace = true
67
edition.workspace = true
78
keywords.workspace = true
89
license.workspace = true
910
readme.workspace = true
1011
repository.workspace = true
11-
version.workspace = true
1212

1313
[lib]
1414
bench = false

brush-shell/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "brush-shell"
33
description = "Rust-implemented shell focused on POSIX and bash compatibility"
4+
version = "0.1.0"
45
authors.workspace = true
56
categories.workspace = true
67
edition.workspace = true
78
keywords.workspace = true
89
license.workspace = true
910
readme.workspace = true
1011
repository.workspace = true
11-
version.workspace = true
1212

1313
[[bin]]
1414
name = "brush"

0 commit comments

Comments
 (0)