Skip to content

Commit

Permalink
build(deps): bump the cargo group across 1 directory with 4 updates (#…
Browse files Browse the repository at this point in the history
…320)

Bumps the cargo group with 4 updates in the / directory: [async-trait](https://github.com/dtolnay/async-trait), [tokio](https://github.com/tokio-rs/tokio), [thiserror](https://github.com/dtolnay/thiserror) and [clap_mangen](https://github.com/clap-rs/clap).


Updates `async-trait` from 0.1.84 to 0.1.85
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.84...0.1.85)

Updates `tokio` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.42.0...tokio-1.43.0)

Updates `thiserror` from 2.0.9 to 2.0.11
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.9...2.0.11)

Updates `clap_mangen` from 0.2.24 to 0.2.26
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_mangen-v0.2.24...clap_mangen-v0.2.26)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: clap_mangen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 13, 2025
1 parent c094f1f commit 504d098
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 29 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions brush-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ workspace = true

[dependencies]
async-recursion = "1.1.1"
async-trait = "0.1.84"
async-trait = "0.1.85"
brush-parser = { version = "^0.2.12", path = "../brush-parser" }
cached = "0.54.0"
cfg-if = "1.0.0"
Expand All @@ -30,16 +30,16 @@ indexmap = "2.7.0"
itertools = "0.14.0"
lazy_static = "1.5.0"
rand = "0.8.5"
thiserror = "2.0.7"
thiserror = "2.0.11"
tracing = "0.1.41"

[target.'cfg(target_family = "wasm")'.dependencies]
tokio = { version = "1.42.0", features = ["io-util", "macros", "rt"] }
tokio = { version = "1.43.0", features = ["io-util", "macros", "rt"] }

[target.'cfg(any(windows, unix))'.dependencies]
hostname = "0.4.0"
os_pipe = { version = "1.2.1", features = ["io_safety"] }
tokio = { version = "1.41.1", features = [
tokio = { version = "1.43.0", features = [
"io-util",
"macros",
"process",
Expand Down
6 changes: 3 additions & 3 deletions brush-interactive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ reedline = ["dep:reedline", "dep:nu-ansi-term"]
workspace = true

[dependencies]
async-trait = "0.1.84"
async-trait = "0.1.85"
brush-parser = { version = "^0.2.12", path = "../brush-parser" }
brush-core = { version = "^0.2.14", path = "../brush-core" }
crossterm = { version = "0.28.1", features = ["serde"], optional = true }
indexmap = "2.7.0"
nu-ansi-term = { version = "0.50.1", optional = true }
reedline = { version = "0.38.0", optional = true }
thiserror = "2.0.7"
thiserror = "2.0.11"
tracing = "0.1.41"

[target.'cfg(any(windows, unix))'.dependencies]
tokio = { version = "1.42.0", features = ["macros", "signal"] }
tokio = { version = "1.43.0", features = ["macros", "signal"] }
2 changes: 1 addition & 1 deletion brush-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
cached = "0.54.0"
indenter = "0.3.3"
peg = "0.8.4"
thiserror = "2.0.7"
thiserror = "2.0.11"
tracing = "0.1.41"
utf8-chars = "3.0.5"

Expand Down
6 changes: 3 additions & 3 deletions brush-shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ reedline = ["brush-interactive/reedline"]
workspace = true

[dependencies]
async-trait = "0.1.84"
async-trait = "0.1.85"
brush-parser = { version = "^0.2.12", path = "../brush-parser" }
brush-core = { version = "^0.2.14", path = "../brush-core" }
cfg-if = "1.0.0"
Expand All @@ -55,14 +55,14 @@ human-panic = "2.0.2"
brush-interactive = { version = "^0.2.14", path = "../brush-interactive", features = [
"minimal",
] }
tokio = { version = "1.42.0", features = ["rt", "sync"] }
tokio = { version = "1.43.0", features = ["rt", "sync"] }

[target.'cfg(any(windows, unix))'.dependencies]
brush-interactive = { version = "^0.2.14", path = "../brush-interactive", features = [
"basic",
"reedline",
] }
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "sync"] }
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "sync"] }

[dev-dependencies]
anyhow = "1.0.95"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ anyhow = "1.0.95"
assert_cmd = "2.0.16"
lazy_static = "1.5.0"
libfuzzer-sys = "0.4"
tokio = { version = "1.42.0", features = ["rt"] }
tokio = { version = "1.43.0", features = ["rt"] }

[dependencies.brush-core]
path = "../brush-core"
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ rust-version.workspace = true
anyhow = "1.0.95"
brush-shell = { version = "^0.2.14", path = "../brush-shell" }
clap = { version = "4.5.21", features = ["derive"] }
clap_mangen = "0.2.24"
clap_mangen = "0.2.26"
clap-markdown = "0.1.4"

0 comments on commit 504d098

Please sign in to comment.