Skip to content

Commit

Permalink
Bump the dependencies group with 5 updates
Browse files Browse the repository at this point in the history
Updates the requirements on [itertools](https://github.com/rust-itertools/itertools), [poem](https://github.com/poem-web/poem), [poem-openapi](https://github.com/poem-web/poem), [predicates](https://github.com/assert-rs/predicates-rs) and [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version.

Updates `itertools` to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.0...v0.14.0)

Updates `poem` to 3.1.6
- [Release notes](https://github.com/poem-web/poem/releases)
- [Commits](https://github.com/poem-web/poem/commits)

Updates `poem-openapi` to 5.1.5
- [Release notes](https://github.com/poem-web/poem/releases)
- [Commits](https://github.com/poem-web/poem/commits)

Updates `predicates` to 3.1.3
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@v2.0.0...v3.1.3)

Updates `reqwest` to 0.12.12
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.0...v0.12.12)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: poem
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: poem-openapi
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: predicates
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 22, 2025
1 parent 375006d commit dd33682
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions chitchat-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"

[dependencies]
chitchat = { version = "0.9.0", path = "../chitchat" }
poem = "1"
poem-openapi = {version="1.3", features = ["swagger-ui"] }
poem = "3"
poem-openapi = {version="5.1", features = ["swagger-ui"] }
structopt = "0.3"
tokio = { version = "1.28.0", features = ["net", "sync", "rt-multi-thread", "macros", "time"] }
serde = { version="1", features=["derive"] }
Expand All @@ -19,5 +19,5 @@ cool-id-generator = "1"

[dev-dependencies]
assert_cmd = "2"
predicates = "2"
reqwest = { version = "0.11", default-features=false, features = ["blocking", "json"] }
predicates = "3"
reqwest = { version = "0.12", default-features=false, features = ["blocking", "json"] }
2 changes: 1 addition & 1 deletion chitchat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/quickwit-oss/chitchat"
anyhow = "1.0.51"
async-trait = "0.1"
bytes = "1"
itertools = "0.12"
itertools = "0.14"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.28.0", features = [
Expand Down

0 comments on commit dd33682

Please sign in to comment.