Skip to content

Commit

Permalink
Merge pull request #554 from jeremyandrews/updates
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
jeremyandrews committed Aug 17, 2023
2 parents 2a80755 + bdd6f71 commit b47f403
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [#543](https://github.com/tag1consulting/goose/pull/543) remove external dependency on num_cpus(), use instead built-in available_parallelism() added in rust 1.59.0
- [#552](https://github.com/tag1consulting/goose/pull/552) add `scenario_index`, `scenario_name`, `transaction_index` and `transaction_name` to the request log
- [#553](https://github.com/tag1consulting/goose/pull/553) remove `serde_cbor` dependency no longer required due to [#529]
- [#554](https://github.com/tag1consulting/goose/pull/554) update `flume`, `itertools`, `strum`, `strum_macros`, `tokio-tungstenite`, and `tungestenite` dependencies to latest versions

## 0.17.0 December 9, 2022
- [#529](https://github.com/tag1consulting/goose/pull/529) **API change** temporaryily removed Gaggle support `gaggle` feature) to allow upgrading Tokio and other dependencies.
Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ license = "Apache-2.0"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
ctrlc = "3.2"
ctrlc = "3"
downcast-rs = "1.2"
flume = "0.10"
flume = "0.11"
futures = "0.3"
gumdrop = "0.8"
http = "0.2"
itertools = "0.10"
itertools = "0.11"
lazy_static = "1.4"
log = "0.4"
num-format = "0.4"
Expand All @@ -36,9 +36,9 @@ serde = { version = "1.0", features = [
] }
serde_json = "1.0"
simplelog = "0.12"
strum = "0.24"
strum_macros = "0.24"
tokio = { version = "1.23", features = [
strum = "0.25"
strum_macros = "0.25"
tokio = { version = "1", features = [
"fs",
"io-util",
"macros",
Expand All @@ -47,8 +47,8 @@ tokio = { version = "1.23", features = [
"time",
"sync",
] }
tokio-tungstenite = "0.18"
tungstenite = "0.18"
tokio-tungstenite = "0.20"
tungstenite = "0.20"
url = "2"

[features]
Expand Down

0 comments on commit b47f403

Please sign in to comment.