Skip to content

Commit 2393220

Browse files
authored
fix: ensure brush-core builds outside workspace (#90)
add 'term' feature to nix package dependency of brush-core
1 parent c195bad commit 2393220

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

brush-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-core"
33
description = "Reusable core of a POSIX/bash shell (used by brush-shell)"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
categories.workspace = true
66
edition.workspace = true
77
keywords.workspace = true
@@ -19,7 +19,7 @@ workspace = true
1919
[dependencies]
2020
async-recursion = "1.1.0"
2121
async-trait = "0.1.80"
22-
brush-parser = { version = "^0.2.1", path = "../brush-parser" }
22+
brush-parser = { version = "^0.2.2", path = "../brush-parser" }
2323
cached = "0.51.3"
2424
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
2525
clap = { version = "=4.4.18", features = ["derive", "wrap_help"] }
@@ -47,7 +47,7 @@ whoami = "1.5.1"
4747

4848
[target.'cfg(unix)'.dependencies]
4949
command-fds = "0.3.0"
50-
nix = { version = "0.29.0", features = ["fs", "process", "signal", "user"] }
50+
nix = { version = "0.29.0", features = ["fs", "process", "signal", "term", "user"] }
5151
procfs = "0.16.0"
5252
uzers = "0.12.0"
5353

brush-interactive/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-interactive"
33
description = "Interactive layer of brush-shell"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -18,8 +18,8 @@ bench = false
1818
workspace = true
1919

2020
[dependencies]
21-
brush-parser = { version = "^0.2.1", path = "../brush-parser" }
22-
brush-core = { version = "^0.2.1", path = "../brush-core" }
21+
brush-parser = { version = "^0.2.2", path = "../brush-parser" }
22+
brush-core = { version = "^0.2.2", path = "../brush-core" }
2323
rustyline = { package = "brush-rustyline-fork", version = "14.0.1", features = [
2424
"derive",
2525
] }

brush-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-parser"
33
description = "POSIX/bash shell tokenizer and parsers (used by brush-shell)"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true

brush-shell/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brush-shell"
33
description = "Rust-implemented shell focused on POSIX and bash compatibility"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
authors.workspace = true
66
categories.workspace = true
77
edition.workspace = true
@@ -25,9 +25,9 @@ harness = false
2525
workspace = true
2626

2727
[dependencies]
28-
brush-interactive = { version = "^0.2.1", path = "../brush-interactive" }
29-
brush-parser = { version = "^0.2.1", path = "../brush-parser" }
30-
brush-core = { version = "^0.2.1", path = "../brush-core" }
28+
brush-interactive = { version = "^0.2.2", path = "../brush-interactive" }
29+
brush-parser = { version = "^0.2.2", path = "../brush-parser" }
30+
brush-core = { version = "^0.2.2", path = "../brush-core" }
3131
# N.B. Pin to 4.4.18 for now to keep to 1.72.0 as MSRV; 4.5.x requires a later version.
3232
clap = { version = "=4.4.18", features = ["derive", "wrap_help"] }
3333
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread"] }

0 commit comments

Comments
 (0)