Skip to content

Commit

Permalink
build(deps): bump the cargo group with 7 updates (#267)
Browse files Browse the repository at this point in the history
* build(deps): bump the cargo group with 7 updates

Bumps the cargo group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.0` | `1.41.1` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.92` | `1.0.93` |
| [arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.1` |
| [cached](https://github.com/jaemk/cached) | `0.53.1` | `0.54.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.67` | `2.0.3` |
| [pprof](https://github.com/tikv/pprof-rs) | `0.13.0` | `0.14.0` |
| [libfuzzer-sys](https://github.com/rust-fuzz/libfuzzer) | `0.4.7` | `0.4.8` |


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

Updates `anyhow` from 1.0.92 to 1.0.93
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.92...1.0.93)

Updates `arbitrary` from 1.3.2 to 1.4.1
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.1)

Updates `cached` from 0.53.1 to 0.54.0
- [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jaemk/cached/commits)

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

Updates `pprof` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/tikv/pprof-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tikv/pprof-rs/commits)

Updates `libfuzzer-sys` from 0.4.7 to 0.4.8
- [Changelog](https://github.com/rust-fuzz/libfuzzer/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/libfuzzer@0.4.7...0.4.8)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: arbitrary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: cached
  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-major
  dependency-group: cargo
- dependency-name: pprof
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: libfuzzer-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: reuben olinsky <[email protected]>
  • Loading branch information
dependabot[bot] and reubeno authored Nov 11, 2024
1 parent a37e470 commit a83c688
Show file tree
Hide file tree
Showing 8 changed files with 94 additions and 44 deletions.
103 changes: 76 additions & 27 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions brush-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ workspace = true
async-recursion = "1.1.1"
async-trait = "0.1.83"
brush-parser = { version = "^0.2.10", path = "../brush-parser" }
cached = "0.53.1"
cached = "0.54.0"
cfg-if = "1.0.0"
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
fancy-regex = "0.14.0"
Expand All @@ -29,11 +29,11 @@ indexmap = "2.6.0"
itertools = "0.13.0"
lazy_static = "1.5.0"
rand = "0.8.5"
thiserror = "1.0.67"
thiserror = "2.0.3"
tracing = "0.1.40"

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

[target.'cfg(any(windows, unix))'.dependencies]
hostname = "0.4.0"
Expand Down Expand Up @@ -66,11 +66,11 @@ uzers = "0.12.1"
procfs = "0.17.0"

[dev-dependencies]
anyhow = "1.0.92"
anyhow = "1.0.93"
criterion = { version = "0.5.1", features = ["async_tokio", "html_reports"] }

[target.'cfg(unix)'.dev-dependencies]
pprof = { version = "0.13.0", features = ["criterion", "flamegraph"] }
pprof = { version = "0.14.0", features = ["criterion", "flamegraph"] }

[[bench]]
name = "shell"
Expand Down
4 changes: 2 additions & 2 deletions brush-interactive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ brush-core = { version = "^0.2.12", path = "../brush-core" }
indexmap = "2.6.0"
nu-ansi-term = { version = "0.50.1", optional = true }
reedline = { version = "0.36.0", optional = true }
thiserror = "1.0.67"
thiserror = "2.0.3"
tracing = "0.1.40"

[target.'cfg(any(windows, unix))'.dependencies]
tokio = { version = "1.41.0", features = ["macros", "signal"] }
tokio = { version = "1.41.1", features = ["macros", "signal"] }
10 changes: 5 additions & 5 deletions brush-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ bench = false
fuzz-testing = ["dep:arbitrary"]

[dependencies]
arbitrary = { version = "1.3.2", optional = true, features = ["derive"] }
cached = "0.53.1"
arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
cached = "0.54.0"
indenter = "0.3.3"
peg = "0.8.4"
thiserror = "1.0.67"
thiserror = "2.0.3"
tracing = "0.1.40"
utf8-chars = "3.0.5"

[dev-dependencies]
anyhow = "1.0.92"
anyhow = "1.0.93"
assert_matches = "1.5.0"
criterion = { version = "0.5.1", features = ["html_reports"] }
pretty_assertions = { version = "1.4.1", features = ["unstable"] }

[target.'cfg(unix)'.dev-dependencies]
pprof = { version = "0.13.0", features = ["criterion", "flamegraph"] }
pprof = { version = "0.14.0", features = ["criterion", "flamegraph"] }

[[bench]]
name = "parser"
Expand Down
4 changes: 2 additions & 2 deletions brush-shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ human-panic = "2.0.2"
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
"basic",
] }
tokio = { version = "1.41.0", features = ["rt", "sync"] }
tokio = { version = "1.41.1", features = ["rt", "sync"] }

[target.'cfg(any(windows, unix))'.dependencies]
brush-interactive = { version = "^0.2.12", path = "../brush-interactive", features = [
Expand All @@ -63,7 +63,7 @@ brush-interactive = { version = "^0.2.12", path = "../brush-interactive", featur
tokio = { version = "1.41.0", features = ["rt", "rt-multi-thread", "sync"] }

[dev-dependencies]
anyhow = "1.0.92"
anyhow = "1.0.93"
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
colored = "2.1.0"
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ deny = []
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = [{ crate = "nu-ansi-term" }, { crate = "itertools" }, { crate = "hashbrown" }]
skip-tree = [
{ crate = "thiserror", reason = "Multiple crates use different versions" },
{ crate = "windows-sys", reason = "several crates use outdated versions" },
{ crate = "windows-core", reason = "several crates use outdated versions" },
{ crate = "windows", reason = "several crates use outdated versions" },
Expand Down
4 changes: 2 additions & 2 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ rust-version.workspace = true
cargo-fuzz = true

[dependencies]
anyhow = "1.0.92"
anyhow = "1.0.93"
assert_cmd = "2.0.16"
lazy_static = "1.5.0"
libfuzzer-sys = "0.4"
tokio = { version = "1.41.0", features = ["rt"] }
tokio = { version = "1.41.1", 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 @@ -12,7 +12,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
anyhow = "1.0.92"
anyhow = "1.0.93"
brush-shell = { version = "^0.2.12", path = "../brush-shell" }
clap = { version = "4.5.20", features = ["derive"] }
clap_mangen = "0.2.24"
Expand Down

0 comments on commit a83c688

Please sign in to comment.