lychee/Cargo.lock

4980 lines
120 KiB
Text
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
version = 3
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
2020-08-07 17:00:21 +00:00
[[package]]
name = "adler"
version = "1.0.2"
2020-08-07 17:00:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-08-07 17:00:21 +00:00
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
[[package]]
name = "ahash"
version = "0.8.7"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
dependencies = [
"cfg-if",
"once_cell",
"version_check",
"zerocopy",
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
]
[[package]]
name = "aho-corasick"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
dependencies = [
"memchr",
]
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
[[package]]
name = "allocator-api2"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-11-05 23:21:00 +00:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
[[package]]
name = "anstream"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
[[package]]
name = "anstyle-parse"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
dependencies = [
"anstyle",
"windows-sys 0.52.0",
]
[[package]]
name = "anyhow"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
[[package]]
name = "arc-swap"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2020-08-23 21:22:48 +00:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
[[package]]
name = "assert-json-diff"
2022-11-05 23:21:00 +00:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
dependencies = [
"serde",
"serde_json",
]
[[package]]
name = "assert_cmd"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
dependencies = [
"anstyle",
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "async-channel"
version = "1.9.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
2020-08-21 22:36:03 +00:00
dependencies = [
"concurrent-queue",
"event-listener 2.5.3",
2020-08-21 22:36:03 +00:00
"futures-core",
]
[[package]]
name = "async-channel"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
dependencies = [
"concurrent-queue",
"event-listener 4.0.2",
"event-listener-strategy",
"futures-core",
"pin-project-lite",
]
2020-08-07 17:00:21 +00:00
[[package]]
name = "async-compression"
version = "0.4.5"
2020-08-07 17:00:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
2020-08-07 17:00:21 +00:00
dependencies = [
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2020-08-07 17:00:21 +00:00
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "async-executor"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
dependencies = [
"async-lock 3.2.0",
"async-task",
"concurrent-queue",
"fastrand 2.0.1",
"futures-lite 2.1.0",
2021-11-03 22:45:42 +00:00
"slab",
]
[[package]]
name = "async-global-executor"
version = "2.4.1"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
2020-08-21 22:36:03 +00:00
dependencies = [
"async-channel 2.1.1",
"async-executor",
"async-io 2.2.2",
"async-lock 3.2.0",
"blocking",
"futures-lite 2.1.0",
"once_cell",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "async-io"
version = "1.13.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
2020-08-21 22:36:03 +00:00
dependencies = [
"async-lock 2.8.0",
2022-11-05 23:21:00 +00:00
"autocfg",
"cfg-if",
2020-08-21 22:36:03 +00:00
"concurrent-queue",
"futures-lite 1.13.0",
"log",
"parking",
"polling 2.8.0",
"rustix 0.37.27",
2021-11-03 22:45:42 +00:00
"slab",
"socket2 0.4.10",
"waker-fn",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "async-io"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7"
dependencies = [
"async-lock 3.2.0",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite 2.1.0",
"parking",
"polling 3.3.1",
"rustix 0.38.28",
"slab",
"tracing",
"windows-sys 0.52.0",
]
[[package]]
name = "async-lock"
version = "2.8.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2020-08-21 22:36:03 +00:00
dependencies = [
"event-listener 2.5.3",
]
[[package]]
name = "async-lock"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c"
dependencies = [
"event-listener 4.0.2",
"event-listener-strategy",
"pin-project-lite",
2020-08-21 22:36:03 +00:00
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "async-native-tls"
version = "0.4.0"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d57d4cec3c647232e1094dc013546c0b33ce785d8aeb251e1f20dfaf8a9a13fe"
2020-08-23 21:22:48 +00:00
dependencies = [
"native-tls",
"thiserror",
"tokio",
2020-08-23 21:22:48 +00:00
"url",
]
[[package]]
name = "async-process"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
dependencies = [
"async-io 1.13.0",
"async-lock 2.8.0",
"async-signal",
"blocking",
"cfg-if",
"event-listener 3.1.0",
"futures-lite 1.13.0",
"rustix 0.38.28",
"windows-sys 0.48.0",
]
[[package]]
name = "async-recursion"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "async-signal"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
dependencies = [
"async-io 2.2.2",
"async-lock 2.8.0",
"atomic-waker",
"cfg-if",
"futures-core",
"futures-io",
"rustix 0.38.28",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "async-smtp"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "2ade89127f9e0d44f9e83cf574d499060005cd45b7dc76be89c0167487fe8edd"
2020-08-23 21:22:48 +00:00
dependencies = [
"async-native-tls",
"async-trait",
"base64 0.13.1",
2020-08-23 21:22:48 +00:00
"bufstream",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"fast-socks5 0.8.2",
"futures",
"hostname",
2020-08-23 21:22:48 +00:00
"log",
"nom",
"pin-project",
2020-08-23 21:22:48 +00:00
"pin-utils",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"tokio",
2020-08-23 21:22:48 +00:00
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "async-std"
version = "1.12.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
2020-08-21 22:36:03 +00:00
dependencies = [
"async-channel 1.9.0",
"async-global-executor",
"async-io 1.13.0",
"async-lock 2.8.0",
"async-process",
"crossbeam-utils",
2020-08-21 22:36:03 +00:00
"futures-channel",
"futures-core",
"futures-io",
"futures-lite 1.13.0",
"gloo-timers",
2020-08-21 22:36:03 +00:00
"kv-log-macro",
"log",
"memchr",
"once_cell",
"pin-project-lite",
2020-08-21 22:36:03 +00:00
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "async-std-resolver"
version = "0.21.2"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f2f8a4a203be3325981310ab243a28e6e4ea55b6519bffce05d41ab60e09ad8"
2020-08-23 21:22:48 +00:00
dependencies = [
"async-std",
"async-trait",
"futures-io",
"futures-util",
"pin-utils",
"socket2 0.4.10",
"trust-dns-resolver 0.21.2",
2020-08-23 21:22:48 +00:00
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "async-stream"
version = "0.3.5"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "async-task"
version = "4.7.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
2020-08-21 22:36:03 +00:00
2020-08-23 21:22:48 +00:00
[[package]]
name = "async-trait"
version = "0.1.77"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
2020-08-23 21:22:48 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-23 21:22:48 +00:00
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2020-08-07 17:00:21 +00:00
[[package]]
name = "autocfg"
2022-05-30 21:02:18 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backtrace"
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
2022-11-05 23:21:00 +00:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
[[package]]
name = "benches"
version = "0.0.0"
dependencies = [
"criterion",
"lychee-lib",
]
[[package]]
name = "bitflags"
2021-11-03 22:45:42 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "blocking"
version = "1.5.1"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
2020-08-21 22:36:03 +00:00
dependencies = [
"async-channel 2.1.1",
"async-lock 3.2.0",
"async-task",
"fastrand 2.0.1",
"futures-io",
"futures-lite 2.1.0",
"piper",
"tracing",
2020-08-21 22:36:03 +00:00
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "bstr"
version = "1.9.0"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
2022-11-05 23:21:00 +00:00
dependencies = [
"memchr",
"regex-automata 0.4.3",
2022-11-05 23:21:00 +00:00
"serde",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
2021-04-30 11:33:24 +00:00
[[package]]
name = "builder"
version = "0.1.0"
dependencies = [
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
2021-04-30 11:33:24 +00:00
"lychee-lib",
"regex",
"reqwest",
"tokio",
]
[[package]]
name = "bumpalo"
version = "3.14.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2020-08-21 22:36:03 +00:00
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "by_address"
2022-11-05 23:21:00 +00:00
version = "1.1.0"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "bytecount"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
[[package]]
name = "bytes"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
[[package]]
name = "cached"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.46.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "c7c8c50262271cdf5abc979a5f76515c234e764fa025d1ba4862c0f0bcda0e95"
dependencies = [
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
"ahash",
"cached_proc_macro",
"cached_proc_macro_types",
"hashbrown 0.14.3",
"instant",
"once_cell",
"thiserror",
]
[[package]]
name = "cached_proc_macro"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "c878c71c2821aa2058722038a59a67583a4240524687c6028571c9b395ded61f"
dependencies = [
"darling 0.14.4",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "cached_proc_macro_types"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
[[package]]
name = "cast"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
[[package]]
name = "cc"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "1.0.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-08-23 21:22:48 +00:00
[[package]]
name = "check-if-email-exists"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "49f11d61ef99e1fecec73a0b9a8bf45ed7e66923e71dadcadcf650b383901eb2"
2020-08-23 21:22:48 +00:00
dependencies = [
"async-native-tls",
"async-recursion",
2020-08-23 21:22:48 +00:00
"async-smtp",
"async-std",
2020-08-23 21:22:48 +00:00
"async-std-resolver",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"fast-socks5 0.9.2",
"levenshtein",
2020-08-23 21:22:48 +00:00
"log",
"mailchecker",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"md5",
"pwned",
"rand 0.8.5",
2020-08-23 21:22:48 +00:00
"regex",
"reqwest",
2020-08-23 21:22:48 +00:00
"serde",
"serde_json",
"trust-dns-proto 0.21.2",
2020-08-23 21:22:48 +00:00
]
[[package]]
name = "chrono"
version = "0.4.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
dependencies = [
"android-tzdata",
2022-11-05 23:21:00 +00:00
"iana-time-zone",
"num-traits",
"serde",
"windows-targets 0.48.5",
]
2020-10-21 00:10:25 +00:00
[[package]]
name = "ciborium"
version = "0.2.1"
2020-10-21 00:10:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926"
2020-10-21 00:10:25 +00:00
dependencies = [
"ciborium-io",
"ciborium-ll",
"serde",
]
[[package]]
name = "ciborium-io"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656"
[[package]]
name = "ciborium-ll"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b"
dependencies = [
"ciborium-io",
"half",
]
[[package]]
name = "clap"
version = "4.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "4.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"strsim 0.10.0",
]
[[package]]
name = "clap_derive"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "4.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "clap_lex"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
2021-04-30 11:33:24 +00:00
[[package]]
name = "client_pool"
version = "0.1.0"
dependencies = [
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"futures",
2021-04-30 11:33:24 +00:00
"lychee-lib",
"tokio",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"tokio-stream",
]
2021-04-30 11:33:24 +00:00
[[package]]
name = "collect_links"
version = "0.1.0"
dependencies = [
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
2021-04-30 11:33:24 +00:00
"lychee-lib",
"regex",
"reqwest",
"tokio",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"tokio-stream",
2021-04-30 11:33:24 +00:00
]
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2020-08-21 22:36:03 +00:00
[[package]]
name = "concurrent-queue"
version = "2.4.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
2020-08-21 22:36:03 +00:00
dependencies = [
2022-12-19 14:05:53 +00:00
"crossbeam-utils",
2020-08-21 22:36:03 +00:00
]
2020-10-10 04:31:28 +00:00
[[package]]
name = "console"
version = "0.15.7"
2020-10-10 04:31:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
2020-10-10 04:31:28 +00:00
dependencies = [
"encode_unicode",
"lazy_static",
2020-10-10 04:31:28 +00:00
"libc",
"unicode-width",
"windows-sys 0.45.0",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "const_format"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.2.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673"
dependencies = [
"const_format_proc_macros",
]
[[package]]
name = "const_format_proc_macros"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.2.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "cookie"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
[[package]]
name = "cookie"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
[[package]]
name = "cookie_store"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa"
dependencies = [
"cookie 0.16.2",
"idna 0.2.3",
"log",
"publicsuffix",
"serde",
"serde_derive",
"serde_json",
"time",
"url",
]
[[package]]
name = "cookie_store"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
dependencies = [
"cookie 0.17.0",
"idna 0.3.0",
"log",
"publicsuffix",
"serde",
"serde_derive",
"serde_json",
"time",
"url",
]
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
[[package]]
2021-11-03 22:45:42 +00:00
name = "cpufeatures"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2021-11-03 22:45:42 +00:00
dependencies = [
"libc",
]
2020-08-07 17:00:21 +00:00
[[package]]
name = "crc32fast"
2022-05-30 21:02:18 +00:00
version = "1.3.2"
2020-08-07 17:00:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-08-07 17:00:21 +00:00
dependencies = [
"cfg-if",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "criterion"
version = "0.5.1"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
source = "git+https://github.com/bheisler/criterion.rs#b913e232edd98780961ecfbae836ec77ede49259"
dependencies = [
"anes",
"cast",
"ciborium",
"clap",
"criterion-plot",
"itertools 0.12.0",
"num-traits",
"once_cell",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_derive",
"serde_json",
"tinytemplate",
"walkdir",
]
[[package]]
name = "criterion-plot"
version = "0.5.0"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
source = "git+https://github.com/bheisler/criterion.rs#b913e232edd98780961ecfbae836ec77ede49259"
dependencies = [
"cast",
"itertools 0.12.0",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "crossbeam"
version = "0.8.3"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"cfg-if",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"crossbeam-queue",
"crossbeam-utils",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "crossbeam-channel"
version = "0.5.10"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "crossbeam-deque"
version = "0.8.4"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.17"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
2022-05-30 21:02:18 +00:00
"autocfg",
"cfg-if",
"crossbeam-utils",
2020-08-07 17:00:21 +00:00
]
[[package]]
name = "crossbeam-queue"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
dependencies = [
"cfg-if",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "crypto-common"
2022-11-05 23:21:00 +00:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "csv"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
dependencies = [
"memchr",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "darling"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
dependencies = [
"darling_core 0.10.2",
"darling_macro 0.10.2",
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "darling"
version = "0.14.4"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
2022-11-05 23:21:00 +00:00
dependencies = [
"darling_core 0.14.4",
"darling_macro 0.14.4",
2022-11-05 23:21:00 +00:00
]
[[package]]
name = "darling"
version = "0.20.3"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
2022-11-05 23:21:00 +00:00
dependencies = [
"darling_core 0.20.3",
"darling_macro 0.20.3",
2022-11-05 23:21:00 +00:00
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "darling_core"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim 0.9.3",
"syn 1.0.109",
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "darling_core"
version = "0.14.4"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
2022-11-05 23:21:00 +00:00
dependencies = [
"fnv",
"ident_case",
2022-11-05 23:21:00 +00:00
"proc-macro2",
"quote",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"strsim 0.10.0",
"syn 1.0.109",
]
[[package]]
name = "darling_core"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"strsim 0.10.0",
"syn 2.0.48",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "darling_macro"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
dependencies = [
"darling_core 0.10.2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "darling_macro"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
dependencies = [
"darling_core 0.14.4",
"quote",
"syn 1.0.109",
]
[[package]]
name = "darling_macro"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
dependencies = [
"darling_core 0.20.3",
"quote",
"syn 2.0.48",
]
2022-01-10 21:35:37 +00:00
[[package]]
name = "dashmap"
Bump the dependencies group with 10 updates (#1249) * Bump the dependencies group with 10 updates Bumps the dependencies group with 10 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.3.23` | `4.4.2` | | [dashmap](https://github.com/xacrimon/dashmap) | `5.5.1` | `5.5.3` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.91` | `0.9.92` | | [regex](https://github.com/rust-lang/regex) | `1.9.3` | `1.9.5` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.19` | `0.11.20` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.29.3` | `0.30.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.47` | `1.0.48` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.15.2` | `0.16.0` | | [url](https://github.com/servo/rust-url) | `2.4.0` | `2.4.1` | | [criterion](https://github.com/bheisler/criterion.rs) | ``4c19e91`` | ``180f4b4`` | Updates `clap` from 4.3.23 to 4.4.2 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.3.23...v4.4.2) Updates `dashmap` from 5.5.1 to 5.5.3 - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.5.1...v.5.5.3) Updates `openssl-sys` from 0.9.91 to 0.9.92 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.91...openssl-sys-v0.9.92) Updates `regex` from 1.9.3 to 1.9.5 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.3...1.9.5) Updates `reqwest` from 0.11.19 to 0.11.20 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.19...v0.11.20) Updates `octocrab` from 0.29.3 to 0.30.1 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.29.3...v0.30.1) Updates `thiserror` from 1.0.47 to 1.0.48 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.47...1.0.48) Updates `typed-builder` from 0.15.2 to 0.16.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `url` from 2.4.0 to 2.4.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.0...v2.4.1) Updates `criterion` from `4c19e91` to `180f4b4` - [Commits](https://github.com/bheisler/criterion.rs/compare/4c19e913b84e6a7e4a8470cb0f766796886ed891...180f4b48964a1fe6bdd7c49cf6d197071bee2e9b) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Format * Fix new clippy lints --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2023-09-05 08:50:45 +00:00
version = "5.5.3"
2022-01-10 21:35:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 10 updates (#1249) * Bump the dependencies group with 10 updates Bumps the dependencies group with 10 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.3.23` | `4.4.2` | | [dashmap](https://github.com/xacrimon/dashmap) | `5.5.1` | `5.5.3` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.91` | `0.9.92` | | [regex](https://github.com/rust-lang/regex) | `1.9.3` | `1.9.5` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.19` | `0.11.20` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.29.3` | `0.30.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.47` | `1.0.48` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.15.2` | `0.16.0` | | [url](https://github.com/servo/rust-url) | `2.4.0` | `2.4.1` | | [criterion](https://github.com/bheisler/criterion.rs) | ``4c19e91`` | ``180f4b4`` | Updates `clap` from 4.3.23 to 4.4.2 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.3.23...v4.4.2) Updates `dashmap` from 5.5.1 to 5.5.3 - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.5.1...v.5.5.3) Updates `openssl-sys` from 0.9.91 to 0.9.92 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.91...openssl-sys-v0.9.92) Updates `regex` from 1.9.3 to 1.9.5 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.3...1.9.5) Updates `reqwest` from 0.11.19 to 0.11.20 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.19...v0.11.20) Updates `octocrab` from 0.29.3 to 0.30.1 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.29.3...v0.30.1) Updates `thiserror` from 1.0.47 to 1.0.48 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.47...1.0.48) Updates `typed-builder` from 0.15.2 to 0.16.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `url` from 2.4.0 to 2.4.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.0...v2.4.1) Updates `criterion` from `4c19e91` to `180f4b4` - [Commits](https://github.com/bheisler/criterion.rs/compare/4c19e913b84e6a7e4a8470cb0f766796886ed891...180f4b48964a1fe6bdd7c49cf6d197071bee2e9b) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Format * Fix new clippy lints --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2023-09-05 08:50:45 +00:00
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
2022-01-10 21:35:37 +00:00
dependencies = [
"cfg-if",
"hashbrown 0.14.3",
2022-05-30 21:02:18 +00:00
"lock_api",
"once_cell",
"parking_lot_core",
"serde",
2022-01-10 21:35:37 +00:00
]
[[package]]
name = "data-encoding"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
[[package]]
name = "deadpool"
2022-05-30 21:02:18 +00:00
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
2022-05-30 21:02:18 +00:00
"retain_mut",
"tokio",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
[[package]]
name = "deranged"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
"serde",
]
[[package]]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "derive_builder"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
dependencies = [
"darling 0.10.2",
"derive_builder_core",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "derive_builder_core"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
dependencies = [
"darling 0.10.2",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2021-09-08 23:49:25 +00:00
[[package]]
name = "difflib"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
[[package]]
name = "dirs"
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
"redox_users",
"windows-sys 0.48.0",
]
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2020-08-23 21:22:48 +00:00
[[package]]
name = "either"
version = "1.9.0"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2020-08-23 21:22:48 +00:00
[[package]]
name = "email_address"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112"
dependencies = [
"serde",
]
2020-10-10 04:31:28 +00:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding_rs"
version = "0.8.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
dependencies = [
"cfg-if",
]
[[package]]
name = "enum-as-inner"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "enum-as-inner"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "env_logger"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
dependencies = [
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
]
2023-06-26 10:59:09 +00:00
[[package]]
name = "equivalent"
version = "1.0.1"
2023-06-26 10:59:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-06-26 10:59:09 +00:00
[[package]]
name = "errno"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
dependencies = [
"libc",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"windows-sys 0.52.0",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "event-listener"
2022-11-05 23:21:00 +00:00
version = "2.5.3"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2020-08-21 22:36:03 +00:00
[[package]]
name = "event-listener"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener"
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener-strategy"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
dependencies = [
"event-listener 4.0.2",
"pin-project-lite",
]
[[package]]
name = "extract"
version = "0.1.0"
dependencies = [
"lychee-lib",
"tokio",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "fast-socks5"
version = "0.8.2"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "961ce1761191c157145a8c9f0c3ceabecd3a729d65c9a8d443674eaee3420f7e"
2020-08-23 21:22:48 +00:00
dependencies = [
"anyhow",
"log",
"thiserror",
"tokio",
"tokio-stream",
2020-08-23 21:22:48 +00:00
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "fast-socks5"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d449e348301d5fb9b0e5781510d8235ffe3bbac3286bd305462736a9e7043039"
dependencies = [
"anyhow",
"async-trait",
"log",
"thiserror",
"tokio",
"tokio-stream",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "fastrand"
version = "1.9.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2020-08-07 17:00:21 +00:00
[[package]]
name = "flate2"
version = "1.0.28"
2020-08-07 17:00:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2020-08-07 17:00:21 +00:00
dependencies = [
"crc32fast",
"miniz_oxide",
2020-08-07 17:00:21 +00:00
]
[[package]]
name = "float-cmp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
dependencies = [
"num-traits",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "flume"
2022-11-05 23:21:00 +00:00
version = "0.10.14"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
[[package]]
name = "futf"
2022-05-30 21:02:18 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
dependencies = [
"mac",
"new_debug_unreachable",
]
[[package]]
name = "futures"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
[[package]]
name = "futures-executor"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2020-08-21 22:36:03 +00:00
[[package]]
name = "futures-lite"
version = "1.13.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
2020-08-21 22:36:03 +00:00
dependencies = [
"fastrand 1.9.0",
2020-08-21 22:36:03 +00:00
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
2020-08-21 22:36:03 +00:00
"waker-fn",
]
[[package]]
name = "futures-lite"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
dependencies = [
"fastrand 2.0.1",
"futures-core",
"futures-io",
"parking",
"pin-project-lite",
]
[[package]]
name = "futures-macro"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "futures-sink"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2020-08-21 22:36:03 +00:00
[[package]]
name = "futures-timer"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
[[package]]
name = "futures-util"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
2020-10-20 23:31:06 +00:00
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
dependencies = [
"cfg-if",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"js-sys",
"libc",
2022-11-05 23:21:00 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"wasm-bindgen",
]
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2020-08-14 00:33:04 +00:00
[[package]]
name = "glob"
version = "0.3.1"
2020-08-14 00:33:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2020-08-14 00:33:04 +00:00
2020-08-21 22:36:03 +00:00
[[package]]
name = "gloo-timers"
version = "0.2.6"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
2020-08-21 22:36:03 +00:00
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "h2"
version = "0.3.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"indexmap 2.1.0",
"slab",
"tokio",
"tokio-util",
2020-08-18 22:10:59 +00:00
"tracing",
]
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-06-26 10:59:09 +00:00
[[package]]
name = "hashbrown"
version = "0.14.3"
2023-06-26 10:59:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
dependencies = [
"ahash",
"allocator-api2",
]
2023-06-26 10:59:09 +00:00
[[package]]
name = "headers"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
dependencies = [
"base64 0.21.5",
"bytes",
"headers-core",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
2021-11-03 22:45:42 +00:00
"httpdate",
"mime",
"sha1 0.10.6",
]
[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
]
2022-05-30 21:02:18 +00:00
[[package]]
name = "heck"
version = "0.4.1"
2022-05-30 21:02:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-05-30 21:02:18 +00:00
[[package]]
name = "hermit-abi"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-08-23 21:22:48 +00:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
2020-08-23 21:22:48 +00:00
]
[[package]]
name = "html5ever"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "html5gum"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c4e556171a058ba117bbe88b059fb37b6289023e007d2903ea6dca3a3cbff14"
dependencies = [
"jetscii",
]
[[package]]
name = "http"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"pin-project-lite",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "http-body"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
dependencies = [
"bytes",
"http 1.0.0",
]
[[package]]
name = "http-range-header"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
2020-08-21 22:36:03 +00:00
[[package]]
name = "http-types"
version = "2.12.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
2020-08-21 22:36:03 +00:00
dependencies = [
"anyhow",
"async-channel 1.9.0",
"base64 0.13.1",
"futures-lite 1.13.0",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
2020-08-21 22:36:03 +00:00
"infer",
"pin-project-lite",
"rand 0.7.3",
2020-08-21 22:36:03 +00:00
"serde",
"serde_json",
"serde_qs",
"serde_urlencoded",
2020-08-21 22:36:03 +00:00
"url",
]
[[package]]
name = "httparse"
2022-11-05 23:21:00 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "humantime-serde"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
dependencies = [
"humantime",
"serde",
]
[[package]]
name = "hyper"
version = "0.14.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"http-body 0.4.6",
"httparse",
2021-11-03 22:45:42 +00:00
"httpdate",
"itoa",
2021-11-03 22:45:42 +00:00
"pin-project-lite",
"socket2 0.5.5",
"tokio",
"tower-service",
2020-08-18 22:10:59 +00:00
"tracing",
"want",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "hyper"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "1.1.0"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
dependencies = [
"bytes",
"http 1.0.0",
"http-body 1.0.0",
"pin-project-lite",
"tokio",
]
[[package]]
name = "hyper-rustls"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
dependencies = [
"futures-util",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"hyper 0.14.28",
"log",
"rustls",
"rustls-native-certs",
"tokio",
"tokio-rustls",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper 0.14.28",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper 0.14.28",
"native-tls",
"tokio",
"tokio-native-tls",
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "iana-time-zone"
version = "0.1.59"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
2022-11-05 23:21:00 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
2022-11-05 23:21:00 +00:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-11-05 23:21:00 +00:00
dependencies = [
"cc",
2022-11-05 23:21:00 +00:00
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2021-11-03 22:45:42 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "idna"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
[[package]]
name = "idna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown 0.12.3",
"serde",
]
2023-06-26 10:59:09 +00:00
[[package]]
name = "indexmap"
version = "2.1.0"
2023-06-26 10:59:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
2023-06-26 10:59:09 +00:00
dependencies = [
"equivalent",
"hashbrown 0.14.3",
"serde",
2023-06-26 10:59:09 +00:00
]
2020-10-10 04:31:28 +00:00
[[package]]
name = "indicatif"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "0.17.7"
2020-10-10 04:31:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25"
2020-10-10 04:31:28 +00:00
dependencies = [
"console",
"instant",
2020-10-10 04:31:28 +00:00
"number_prefix",
"portable-atomic",
"unicode-width",
2020-10-10 04:31:28 +00:00
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "infer"
version = "0.2.3"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
2020-08-21 22:36:03 +00:00
[[package]]
name = "instant"
2021-11-03 22:45:42 +00:00
version = "0.1.12"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
"hermit-abi",
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "ip_network"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
[[package]]
name = "ipconfig"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
dependencies = [
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"socket2 0.5.5",
"widestring",
"windows-sys 0.48.0",
"winreg",
]
2020-08-07 17:00:21 +00:00
[[package]]
name = "ipnet"
version = "2.9.0"
2020-08-07 17:00:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2020-08-07 17:00:21 +00:00
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "iri-string"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21859b667d66a4c1dacd9df0863b3efb65785474255face87f5bca39dd8407c0"
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "is-terminal"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
dependencies = [
"hermit-abi",
"rustix 0.38.28",
"windows-sys 0.52.0",
]
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
2021-09-08 23:49:25 +00:00
[[package]]
name = "itertools"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "0.11.0"
2021-09-08 23:49:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2021-09-08 23:49:25 +00:00
dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
name = "jetscii"
2022-11-05 23:21:00 +00:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e"
[[package]]
name = "js-sys"
version = "0.3.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "jsonwebtoken"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "9.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4"
dependencies = [
"base64 0.21.5",
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
"js-sys",
"pem",
"ring",
"serde",
"serde_json",
"simple_asn1",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "jwalk"
2022-12-19 14:05:53 +00:00
version = "0.8.1"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-19 14:05:53 +00:00
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"crossbeam",
"rayon",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "levenshtein"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760"
[[package]]
name = "libc"
version = "0.2.151"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
[[package]]
name = "libredox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
dependencies = [
"bitflags 2.4.1",
"libc",
"redox_syscall",
]
2022-11-05 23:21:00 +00:00
2020-08-23 21:22:48 +00:00
[[package]]
name = "linked-hash-map"
2022-11-05 23:21:00 +00:00
version = "0.5.6"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2020-08-23 21:22:48 +00:00
[[package]]
name = "linkify"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1dfa36d52c581e9ec783a7ce2a5e0143da6237be5811a0b3153fedfdbe9f780"
dependencies = [
"memchr",
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
2020-08-21 22:36:03 +00:00
[[package]]
name = "lock_api"
version = "0.4.11"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2020-08-21 22:36:03 +00:00
dependencies = [
2022-05-30 21:02:18 +00:00
"autocfg",
2020-08-21 22:36:03 +00:00
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
dependencies = [
"value-bag",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "lychee"
2024-01-05 15:22:24 +00:00
version = "0.14.0"
dependencies = [
"anyhow",
"assert-json-diff",
"assert_cmd",
"clap",
2021-02-18 23:41:49 +00:00
"console",
"const_format",
"csv",
"dashmap",
"env_logger",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"futures",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"headers",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"humantime",
"humantime-serde",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"indicatif",
"log",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"lychee-lib",
"once_cell",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"openssl-sys",
"pad",
"predicates",
"pretty_assertions",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"regex",
"reqwest",
"reqwest_cookie_store",
"ring",
"secrecy",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"serde",
"serde_json",
"strum",
"supports-color",
"tabled",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"tempfile",
"tokio",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"tokio-stream",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"toml",
"tracing-subscriber",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"uuid",
"wiremock",
]
[[package]]
name = "lychee-lib"
2024-01-05 15:22:24 +00:00
version = "0.14.0"
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
dependencies = [
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"async-stream",
"cached",
Major refactor of codebase (#208) - The binary component and library component are separated as two packages in the same workspace. - `lychee` is the binary component, in `lychee-bin/*`. - `lychee-lib` is the library component, in `lychee-lib/*`. - Users can now install only the `lychee-lib`, instead of both components, that would require fewer dependencies and faster compilation. - Dependencies for each component are adjusted and updated. E.g., no CLI dependencies for `lychee-lib`. - CLI tests are only moved to `lychee`, as it has nothing to do with the library component. - `Status::Error` is refactored to contain dedicated error enum, `ErrorKind`. - The motivation is to delay the formatting of errors to strings. Note that `e.to_string()` is not necessarily cheap (though trivial in many cases). The formatting is no delayed until the error is needed to be displayed to users. So in some cases, if the error is never used, it means that it won't be formatted at all. - Replaced `regex` based matching with one of the following: - Simple string equality test in the case of 'false positivie'. - URL parsing based test, in the case of extracting repository and user name for GitHub links. - Either cases would be much more efficient than `regex` based matching. First, there's no need to construct a state machine for regex. Second, URL is already verified and parsed on its creation, and extracting its components is fairly cheap. Also, this removes the dependency on `lazy-static` in `lychee-lib`. - `types` module now has a sub-directory, and its components are now separated into their own modules (in that sub-directory). - `lychee-lib::test_utils` module is only compiled for tests. - `wiremock` is moved to `dev-dependency` as it's only needed for `test` modules. - Dependencies are listed in alphabetical order. - Imports are organized in the following fashion: - Imports from `std` - Imports from 3rd-party crates, and `lychee-lib`. - Imports from `crate::*` or `super::*`. - No glob import. - I followed suggestion from `cargo clippy`, with `clippy::all` and `clippy:pedantic`. Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
"check-if-email-exists",
2021-02-18 10:14:00 +00:00
"doc-comment",
"email_address",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"futures",
2020-08-14 00:33:04 +00:00
"glob",
"headers",
"html5ever",
"html5gum",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
"hyper 1.1.0",
"ip_network",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"jwalk",
"linkify",
2021-06-16 11:03:36 +00:00
"log",
"octocrab",
"once_cell",
"openssl-sys",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"par-stream",
"path-clean",
"percent-encoding",
2020-10-20 23:31:06 +00:00
"pulldown-cmark",
"regex",
"reqwest",
"reqwest_cookie_store",
"ring",
"rstest",
"secrecy",
2020-10-21 00:10:25 +00:00
"serde",
2023-03-27 10:29:12 +00:00
"serde_json",
"serde_with",
"shellexpand",
"tempfile",
"thiserror",
"tokio",
"toml",
"typed-builder",
2020-08-07 17:00:21 +00:00
"url",
2020-08-21 22:36:03 +00:00
"wiremock",
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2020-08-23 21:22:48 +00:00
[[package]]
name = "mailchecker"
version = "5.0.9"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c64fa7af9860896bdfe496f323ac278f256006fd248dd7730e37c5faa648b05"
2020-08-23 21:22:48 +00:00
dependencies = [
"fast_chemail",
2022-01-10 21:35:37 +00:00
"once_cell",
2020-08-23 21:22:48 +00:00
]
[[package]]
name = "markup5ever"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
dependencies = [
"log",
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
[[package]]
name = "matches"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[package]]
name = "memchr"
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.8.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
dependencies = [
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys 0.48.0",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "nanorand"
2022-05-30 21:02:18 +00:00
version = "0.7.0"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"getrandom 0.2.11",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "native-tls"
2022-11-05 23:21:00 +00:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2020-08-23 21:22:48 +00:00
[[package]]
name = "nom"
version = "7.1.3"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2020-08-23 21:22:48 +00:00
dependencies = [
"memchr",
"minimal-lexical",
2020-08-23 21:22:48 +00:00
]
[[package]]
name = "normalize-line-endings"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
[[package]]
name = "num-bigint"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
2022-05-30 21:02:18 +00:00
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
"hermit-abi",
"libc",
]
2020-10-10 04:31:28 +00:00
[[package]]
name = "number_prefix"
2022-01-10 21:35:37 +00:00
version = "0.4.0"
2020-10-10 04:31:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-10 21:35:37 +00:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2020-10-10 04:31:28 +00:00
[[package]]
name = "object"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
"memchr",
]
[[package]]
name = "octocrab"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "abfeeafb5fa0da7046229ec3c7b3bd2981aae05c549871192c408d59fc0fffd5"
dependencies = [
"arc-swap",
"async-trait",
"base64 0.21.5",
"bytes",
"cfg-if",
"chrono",
"either",
"futures",
"futures-util",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"http-body 0.4.6",
"hyper 0.14.28",
"hyper-rustls",
"hyper-timeout",
"jsonwebtoken",
"once_cell",
"percent-encoding",
"pin-project",
"secrecy",
"serde",
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
"snafu",
"tokio",
"tower",
"tower-http",
"tracing",
"url",
]
[[package]]
name = "once_cell"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "oorandom"
version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "openssl"
version = "0.10.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
dependencies = [
"bitflags 2.4.1",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
2022-05-30 21:02:18 +00:00
"openssl-macros",
"openssl-sys",
]
2022-05-30 21:02:18 +00:00
[[package]]
name = "openssl-macros"
version = "0.1.1"
2022-05-30 21:02:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-05-30 21:02:18 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
2022-05-30 21:02:18 +00:00
]
[[package]]
name = "openssl-probe"
2022-05-30 21:02:18 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "300.2.1+3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.9.98"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "pad"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3"
dependencies = [
"unicode-width",
]
[[package]]
name = "papergrid"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "9ad43c07024ef767f9160710b3a6773976194758c7919b17e63b863db0bdf7fb"
dependencies = [
"bytecount",
"fnv",
"unicode-width",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "par-stream"
version = "0.10.2"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ef8c7bc0cbc89c3d02fb0cce36f609e8707150bd38c1cbce79c6b7906f4099a"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"by_address",
2022-01-10 21:35:37 +00:00
"crossbeam",
"dashmap",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"derivative",
"flume",
"futures",
"num_cpus",
2022-01-10 21:35:37 +00:00
"once_cell",
"parking_lot",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"pin-project",
"tokio",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "parking"
version = "2.2.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
2020-08-21 22:36:03 +00:00
[[package]]
name = "parking_lot"
2022-11-05 23:21:00 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "parking_lot_core"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-targets 0.48.5",
]
[[package]]
name = "path-clean"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
[[package]]
name = "pem"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
dependencies = [
"base64 0.21.5",
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
"serde",
]
[[package]]
name = "percent-encoding"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
2022-05-30 21:02:18 +00:00
"phf_shared",
]
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
2022-05-30 21:02:18 +00:00
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
2022-05-30 21:02:18 +00:00
"phf_shared",
"rand 0.8.5",
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "pin-project-lite"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "piper"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
dependencies = [
"atomic-waker",
"fastrand 2.0.1",
"futures-io",
]
[[package]]
name = "pkg-config"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
[[package]]
name = "plotters"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
[[package]]
name = "plotters-svg"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
dependencies = [
"plotters-backend",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "polling"
version = "2.8.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2020-08-21 22:36:03 +00:00
dependencies = [
2022-11-05 23:21:00 +00:00
"autocfg",
"bitflags 1.3.2",
"cfg-if",
"concurrent-queue",
2020-08-21 22:36:03 +00:00
"libc",
"log",
"pin-project-lite",
"windows-sys 0.48.0",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "polling"
version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e"
dependencies = [
"cfg-if",
"concurrent-queue",
"pin-project-lite",
"rustix 0.38.28",
"tracing",
"windows-sys 0.52.0",
]
[[package]]
name = "portable-atomic"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
2022-11-05 23:21:00 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "predicates"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "3.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0"
dependencies = [
"anstyle",
"difflib",
"float-cmp",
"itertools 0.11.0",
"normalize-line-endings",
"predicates-core",
"regex",
]
[[package]]
name = "predicates-core"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
[[package]]
name = "predicates-tree"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
dependencies = [
"predicates-core",
2021-11-03 22:45:42 +00:00
"termtree",
]
[[package]]
name = "pretty_assertions"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
dependencies = [
"diff",
"yansi",
]
2020-10-21 00:10:25 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
2020-10-21 00:10:25 +00:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
version = "1.0.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
dependencies = [
2022-05-30 21:02:18 +00:00
"unicode-ident",
]
[[package]]
name = "psl-types"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
[[package]]
name = "publicsuffix"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
dependencies = [
"idna 0.3.0",
"psl-types",
]
2020-10-20 23:31:06 +00:00
[[package]]
name = "pulldown-cmark"
version = "0.9.3"
2020-10-20 23:31:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
2020-10-20 23:31:06 +00:00
dependencies = [
"bitflags 1.3.2",
2020-10-20 23:31:06 +00:00
"getopts",
"memchr",
"unicase",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "pwned"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f75258f75c681eb691607acdb325d0150907bc68826365b07476834df2664974"
dependencies = [
"derive_builder",
"reqwest",
"serde",
"serde_derive",
"serde_json",
"sha1 0.6.1",
"thiserror",
]
2020-08-07 17:00:21 +00:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-11-03 22:45:42 +00:00
"rand_chacha 0.3.1",
2022-11-05 23:21:00 +00:00
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2021-11-03 22:45:42 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-11-05 23:21:00 +00:00
"rand_core 0.6.4",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2022-11-05 23:21:00 +00:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom 0.2.11",
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "rayon"
version = "1.8.0"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.0"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
[[package]]
name = "redox_syscall"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "redox_users"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
dependencies = [
"getrandom 0.2.11",
"libredox",
2022-05-30 21:02:18 +00:00
"thiserror",
]
[[package]]
name = "regex"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "1.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
dependencies = [
"aho-corasick",
"memchr",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"regex-automata 0.4.3",
"regex-syntax 0.8.2",
]
[[package]]
name = "regex-automata"
2021-11-03 22:45:42 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "regex-automata"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
dependencies = [
"aho-corasick",
"memchr",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"regex-syntax 0.8.2",
]
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "relative-path"
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
[[package]]
name = "reqwest"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.11.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
dependencies = [
"async-compression",
"base64 0.21.5",
"bytes",
"cookie 0.16.2",
"cookie_store 0.16.2",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"http-body 0.4.6",
"hyper 0.14.28",
Add optional Rustls support (#1099) * Add optional Rustls support This commit adds a non-default feature flag to use Rustls instead of OpenSSL. My personal motivation is to use Lychee on OpenBSD -current, where the `openssl` crate frequently fails to link against the unreleased system LibreSSL. Using the `vendored-openssl` feature helps with compilation, but segfaults at runtime. The commit adds three feature flags to the library, binary, benchmark, and all examples: - The `native-tls` feature flag toggles the `openssl` crate. - The `rustls-tls` feature flag toggles the `rustls` crate. - The `email-check` feature flag toggles the `check-if-email-exists` crate, which is the only existing functionality currently incompatible with Rustls. By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and lib) can be used as before unless default features are disabled. To use the Rustls feature, pass `--no-default-features --features rustls` to cargo check/build/test/..., e.g., $ cargo clippy --workspace --all-targets --no-default-features \ --features rustls-tls -- --deny warnings Checking email addresses requires both, `native-tls` and `email-check`, to be enabled. Otherwise, email addresses are excluded. The `email-check` feature flag is technically not necessary. I preferred it over `not(rustls-tls)` because it's clearer and it addresses the AGPL license issue #594. As far as I understand, a Lychee binary compiled without the `email-check` feature could be distributed with file-based copyleft for the MPL-licensed dependencies only. But that's out of scope here. The benchmark shows a performance regression varying between 2% and 4.4% when using Rustls instead of OpenSSL on my machine. PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new xonly patches have been upstreamed, see the `rust-ring` port. * Use platform native certificates with Rustls By default, reqwest uses the webpki-roots crate with Rustls, effectively bundling Mozilla's root certificates. This commit uses the rustls-native-certs crate instead to use locally installed root certificates, to minimize the difference between the native-tls and rustls-tls features. * Document feature flags
2023-06-16 00:21:57 +00:00
"hyper-rustls",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
Add optional Rustls support (#1099) * Add optional Rustls support This commit adds a non-default feature flag to use Rustls instead of OpenSSL. My personal motivation is to use Lychee on OpenBSD -current, where the `openssl` crate frequently fails to link against the unreleased system LibreSSL. Using the `vendored-openssl` feature helps with compilation, but segfaults at runtime. The commit adds three feature flags to the library, binary, benchmark, and all examples: - The `native-tls` feature flag toggles the `openssl` crate. - The `rustls-tls` feature flag toggles the `rustls` crate. - The `email-check` feature flag toggles the `check-if-email-exists` crate, which is the only existing functionality currently incompatible with Rustls. By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and lib) can be used as before unless default features are disabled. To use the Rustls feature, pass `--no-default-features --features rustls` to cargo check/build/test/..., e.g., $ cargo clippy --workspace --all-targets --no-default-features \ --features rustls-tls -- --deny warnings Checking email addresses requires both, `native-tls` and `email-check`, to be enabled. Otherwise, email addresses are excluded. The `email-check` feature flag is technically not necessary. I preferred it over `not(rustls-tls)` because it's clearer and it addresses the AGPL license issue #594. As far as I understand, a Lychee binary compiled without the `email-check` feature could be distributed with file-based copyleft for the MPL-licensed dependencies only. But that's out of scope here. The benchmark shows a performance regression varying between 2% and 4.4% when using Rustls instead of OpenSSL on my machine. PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new xonly patches have been upstreamed, see the `rust-ring` port. * Use platform native certificates with Rustls By default, reqwest uses the webpki-roots crate with Rustls, effectively bundling Mozilla's root certificates. This commit uses the rustls-native-certs crate instead to use locally installed root certificates, to minimize the difference between the native-tls and rustls-tls features. * Document feature flags
2023-06-16 00:21:57 +00:00
"rustls",
"rustls-native-certs",
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"system-configuration",
"tokio",
"tokio-native-tls",
Add optional Rustls support (#1099) * Add optional Rustls support This commit adds a non-default feature flag to use Rustls instead of OpenSSL. My personal motivation is to use Lychee on OpenBSD -current, where the `openssl` crate frequently fails to link against the unreleased system LibreSSL. Using the `vendored-openssl` feature helps with compilation, but segfaults at runtime. The commit adds three feature flags to the library, binary, benchmark, and all examples: - The `native-tls` feature flag toggles the `openssl` crate. - The `rustls-tls` feature flag toggles the `rustls` crate. - The `email-check` feature flag toggles the `check-if-email-exists` crate, which is the only existing functionality currently incompatible with Rustls. By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and lib) can be used as before unless default features are disabled. To use the Rustls feature, pass `--no-default-features --features rustls` to cargo check/build/test/..., e.g., $ cargo clippy --workspace --all-targets --no-default-features \ --features rustls-tls -- --deny warnings Checking email addresses requires both, `native-tls` and `email-check`, to be enabled. Otherwise, email addresses are excluded. The `email-check` feature flag is technically not necessary. I preferred it over `not(rustls-tls)` because it's clearer and it addresses the AGPL license issue #594. As far as I understand, a Lychee binary compiled without the `email-check` feature could be distributed with file-based copyleft for the MPL-licensed dependencies only. But that's out of scope here. The benchmark shows a performance regression varying between 2% and 4.4% when using Rustls instead of OpenSSL on my machine. PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new xonly patches have been upstreamed, see the `rust-ring` port. * Use platform native certificates with Rustls By default, reqwest uses the webpki-roots crate with Rustls, effectively bundling Mozilla's root certificates. This commit uses the rustls-native-certs crate instead to use locally installed root certificates, to minimize the difference between the native-tls and rustls-tls features. * Document feature flags
2023-06-16 00:21:57 +00:00
"tokio-rustls",
"tokio-socks",
"tokio-util",
"tower-service",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"trust-dns-resolver 0.23.2",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
[[package]]
name = "reqwest_cookie_store"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba529055ea150e42e4eb9c11dcd380a41025ad4d594b0cb4904ef28b037e1061"
dependencies = [
"bytes",
"cookie_store 0.20.0",
"reqwest",
"url",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "resolv-conf"
version = "0.7.0"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
2020-08-23 21:22:48 +00:00
dependencies = [
"hostname",
2020-08-23 21:22:48 +00:00
"quick-error",
]
2022-05-30 21:02:18 +00:00
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
[[package]]
name = "ring"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.17.7"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
dependencies = [
"cc",
"getrandom 0.2.11",
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
"libc",
"spin",
"untrusted",
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
"windows-sys 0.48.0",
]
[[package]]
name = "rstest"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
dependencies = [
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
dependencies = [
"cfg-if",
"glob",
"proc-macro2",
"quote",
"regex",
"relative-path",
"rustc_version",
"syn 2.0.48",
"unicode-ident",
]
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "rustix"
version = "0.37.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
version = "0.38.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
dependencies = [
"bitflags 2.4.1",
"errno",
"libc",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"linux-raw-sys 0.4.12",
"windows-sys 0.52.0",
]
[[package]]
name = "rustls"
version = "0.21.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-native-certs"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
"openssl-probe",
"rustls-pemfile",
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
"base64 0.21.5",
]
[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustversion"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
[[package]]
name = "ryu"
version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "schannel"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
dependencies = [
"windows-sys 0.52.0",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "scopeguard"
version = "1.2.0"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2020-08-21 22:36:03 +00:00
[[package]]
name = "sct"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "secrecy"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
dependencies = [
"serde",
"zeroize",
]
[[package]]
name = "security-framework"
version = "2.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
[[package]]
name = "serde"
version = "1.0.195"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.195"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "serde_json"
version = "1.0.111"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_path_to_error"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c"
dependencies = [
"itoa",
"serde",
]
[[package]]
name = "serde_qs"
2021-11-03 22:45:42 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_spanned"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
dependencies = [
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_with"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
dependencies = [
"base64 0.21.5",
"chrono",
"hex",
2023-06-26 10:59:09 +00:00
"indexmap 1.9.3",
"indexmap 2.1.0",
"serde",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788"
dependencies = [
"darling 0.20.3",
"proc-macro2",
"quote",
"syn 2.0.48",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "sha1"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
"cfg-if",
2021-11-03 22:45:42 +00:00
"cpufeatures",
"digest",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
"lazy_static",
]
[[package]]
name = "shellexpand"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
dependencies = [
"dirs",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2021-04-30 11:33:24 +00:00
[[package]]
name = "simple"
version = "0.1.0"
dependencies = [
"lychee-lib",
"tokio",
]
[[package]]
name = "simple_asn1"
2022-11-05 23:21:00 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
dependencies = [
"num-bigint",
"num-traits",
"thiserror",
"time",
]
[[package]]
name = "siphasher"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-11-05 23:21:00 +00:00
dependencies = [
"autocfg",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "smallvec"
version = "1.11.2"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2020-08-21 22:36:03 +00:00
[[package]]
name = "snafu"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
dependencies = [
"backtrace",
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "socket2"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "socket2"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "spin"
version = "0.9.8"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"lock_api",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
]
[[package]]
name = "string_cache"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
dependencies = [
"new_debug_unreachable",
2022-05-30 21:02:18 +00:00
"once_cell",
"parking_lot",
2022-05-30 21:02:18 +00:00
"phf_shared",
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
2022-05-30 21:02:18 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
dependencies = [
2022-05-30 21:02:18 +00:00
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "strsim"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.48",
]
[[package]]
name = "supports-color"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
dependencies = [
2022-12-19 14:05:53 +00:00
"is-terminal",
"is_ci",
]
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
2022-05-30 21:02:18 +00:00
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "tabled"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "4c998b0c8b921495196a48aabaf1901ff28be0760136e31604f7967b0792050e"
dependencies = [
"papergrid",
"tabled_derive",
"unicode-width",
]
[[package]]
name = "tabled_derive"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "4c138f99377e5d653a371cdad263615634cfc8467685dfe8e73e2b8e98f44b17"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "tempfile"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "3.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
dependencies = [
"cfg-if",
"fastrand 2.0.1",
"redox_syscall",
"rustix 0.38.28",
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
"windows-sys 0.52.0",
]
[[package]]
name = "tendril"
2022-05-30 21:02:18 +00:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
dependencies = [
"futf",
"mac",
"utf-8",
]
[[package]]
name = "termcolor"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
dependencies = [
"winapi-util",
]
2021-11-03 22:45:42 +00:00
[[package]]
name = "termtree"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
2020-08-21 22:36:03 +00:00
[[package]]
name = "thiserror"
version = "1.0.56"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
2020-08-21 22:36:03 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.56"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
2020-08-21 22:36:03 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-21 22:36:03 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "time"
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
dependencies = [
"deranged",
"itoa",
"powerfmt",
2022-11-05 23:21:00 +00:00
"serde",
"time-core",
"time-macros",
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "time-core"
version = "0.1.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-11-05 23:21:00 +00:00
[[package]]
name = "time-macros"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
2022-11-05 23:21:00 +00:00
dependencies = [
"time-core",
]
[[package]]
name = "tinytemplate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
dependencies = [
"serde",
"serde_json",
]
[[package]]
name = "tinyvec"
2022-05-30 21:02:18 +00:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 21:02:18 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "1.35.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"socket2 0.5.5",
"tokio-macros",
"windows-sys 0.48.0",
]
[[package]]
name = "tokio-io-timeout"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
"rustls",
"tokio",
]
2020-08-23 21:22:48 +00:00
[[package]]
name = "tokio-socks"
version = "0.5.1"
2020-08-23 21:22:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
2020-08-23 21:22:48 +00:00
dependencies = [
"either",
"futures-util",
2020-08-23 21:22:48 +00:00
"thiserror",
"tokio",
]
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
[[package]]
name = "tokio-stream"
version = "0.1.14"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2022-05-30 21:02:18 +00:00
[[package]]
name = "tokio-util"
version = "0.7.10"
2022-05-30 21:02:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2022-05-30 21:02:18 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2020-10-21 00:10:25 +00:00
[[package]]
name = "toml"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.8.8"
2020-10-21 00:10:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
2020-10-21 00:10:25 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
dependencies = [
"indexmap 2.1.0",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
2020-10-21 00:10:25 +00:00
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite",
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
dependencies = [
"bitflags 2.4.1",
"bytes",
"futures-core",
"futures-util",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"http 0.2.11",
"http-body 0.4.6",
"http-range-header",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"iri-string",
"pin-project-lite",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
[[package]]
name = "tower-service"
2022-11-05 23:21:00 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-08-18 22:10:59 +00:00
[[package]]
name = "tracing"
version = "0.1.40"
2020-08-18 22:10:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2020-08-18 22:10:59 +00:00
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
2020-08-18 22:10:59 +00:00
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
2020-08-18 22:10:59 +00:00
[[package]]
name = "tracing-core"
version = "0.1.32"
2020-08-18 22:10:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2020-08-18 22:10:59 +00:00
dependencies = [
"once_cell",
2020-08-18 22:10:59 +00:00
]
[[package]]
name = "tracing-subscriber"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [
"matchers",
"once_cell",
"regex",
"sharded-slab",
"thread_local",
"tracing",
"tracing-core",
]
[[package]]
name = "trust-dns-proto"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d"
dependencies = [
"async-trait",
"cfg-if",
"data-encoding",
"enum-as-inner 0.4.0",
"futures-channel",
"futures-io",
"futures-util",
"idna 0.2.3",
"ipnet",
2020-08-23 21:22:48 +00:00
"lazy_static",
"log",
"rand 0.8.5",
2020-08-23 21:22:48 +00:00
"smallvec",
"thiserror",
"tinyvec",
"tokio",
2020-08-23 21:22:48 +00:00
"url",
]
[[package]]
name = "trust-dns-proto"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374"
dependencies = [
"async-trait",
"cfg-if",
"data-encoding",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"enum-as-inner 0.6.0",
"futures-channel",
"futures-io",
"futures-util",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"idna 0.4.0",
"ipnet",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"once_cell",
"rand 0.8.5",
"smallvec",
"thiserror",
"tinyvec",
"tokio",
"tracing",
"url",
]
[[package]]
name = "trust-dns-resolver"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558"
dependencies = [
"cfg-if",
"futures-util",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"parking_lot",
"resolv-conf",
"smallvec",
"thiserror",
"trust-dns-proto 0.21.2",
]
[[package]]
name = "trust-dns-resolver"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6"
dependencies = [
"cfg-if",
"futures-util",
"ipconfig",
"lru-cache",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"once_cell",
"parking_lot",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"rand 0.8.5",
"resolv-conf",
"smallvec",
"thiserror",
"tokio",
"tracing",
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
"trust-dns-proto 0.23.2",
2020-08-23 21:22:48 +00:00
]
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typed-builder"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "e47c0496149861b7c95198088cbf36645016b1a0734cf350c50e2a38e070f38a"
dependencies = [
"typed-builder-macro",
]
[[package]]
name = "typed-builder-macro"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "982ee4197351b5c9782847ef5ec1fdcaf50503fb19d68f9771adae314e72b492"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "unicase"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2022-05-30 21:02:18 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
2022-05-30 21:02:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "unicode-normalization"
2022-11-05 23:21:00 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2020-10-10 04:31:28 +00:00
[[package]]
name = "unicode-width"
version = "0.1.11"
2020-10-10 04:31:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2020-10-10 04:31:28 +00:00
[[package]]
name = "unicode-xid"
2022-11-05 23:21:00 +00:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 23:21:00 +00:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
Bump the dependencies group with 14 updates (#1260) Bumps the dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.2` | `4.4.6` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.6` | `0.17.7` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.92` | `0.9.93` | | [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.9.6` | | [ring](https://github.com/briansmith/ring) | `0.16.20` | `0.17.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` | | [supports-color](https://github.com/zkat/supports-color) | `2.0.0` | `2.1.0` | | [toml](https://github.com/toml-rs/toml) | `0.7.6` | `0.8.1` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.0.3` | `3.0.4` | | [cached](https://github.com/jaemk/cached) | `0.44.0` | `0.46.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.30.1` | `0.31.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.48` | `1.0.49` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.0` | `0.16.2` | | [rstest](https://github.com/la10736/rstest) | `0.18.1` | `0.18.2` | Updates `clap` from 4.4.2 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.2...v4.4.6) Updates `indicatif` from 0.17.6 to 0.17.7 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/commits) Updates `openssl-sys` from 0.9.92 to 0.9.93 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93) Updates `regex` from 1.9.5 to 1.9.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.5...1.9.6) Updates `ring` from 0.16.20 to 0.17.0 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.105 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.107) Updates `supports-color` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.0.0...v2.1.0) Updates `toml` from 0.7.6 to 0.8.1 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) Updates `predicates` from 3.0.3 to 3.0.4 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4) Updates `cached` from 0.44.0 to 0.46.0 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `octocrab` from 0.30.1 to 0.31.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.30.1...v0.31.0) Updates `thiserror` from 1.0.48 to 1.0.49 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.48...1.0.49) Updates `typed-builder` from 0.16.0 to 0.16.2 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `rstest` from 0.18.1 to 0.18.2 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.18.1...v0.18.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: indicatif dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-02 14:13:07 +00:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
dependencies = [
"form_urlencoded",
Bump the dependencies group with 18 updates (#1328) * Bump the dependencies group with 18 updates Bumps the dependencies group with 18 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.78` | | [clap](https://github.com/clap-rs/clap) | `4.4.10` | `4.4.12` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` | | [http](https://github.com/hyperium/http) | `0.2.11` | `1.0.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.96` | `0.9.98` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` | | [ring](https://github.com/briansmith/ring) | `0.17.3` | `0.17.7` | | [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` | | [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.34.0` | `1.35.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` | | [hyper](https://github.com/hyperium/hyper) | `1.0.1` | `1.1.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.2` | `0.32.0` | | [percent-encoding](https://github.com/servo/rust-url) | `2.3.0` | `2.3.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.53` | | [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``e1a8c9a`` | ``b913e23`` | Updates `anyhow` from 1.0.75 to 1.0.78 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.78) Updates `clap` from 4.4.10 to 4.4.12 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.10...v4.4.12) Updates `futures` from 0.3.29 to 0.3.30 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) Updates `http` from 0.2.11 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.11...v1.0.0) Updates `once_cell` from 1.18.0 to 1.19.0 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.18.0...v1.19.0) Updates `openssl-sys` from 0.9.96 to 0.9.98 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.98) Updates `reqwest` from 0.11.22 to 0.11.23 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) Updates `ring` from 0.17.3 to 0.17.7 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde_json` from 1.0.108 to 1.0.109 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.108...v1.0.109) Updates `tabled` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/compare/v0.14.0...v0.15.0) Updates `tokio` from 1.34.0 to 1.35.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.35.1) Updates `tempfile` from 3.8.1 to 3.9.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) Updates `hyper` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0) Updates `octocrab` from 0.31.2 to 0.32.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.2...v0.32.0) Updates `percent-encoding` from 2.3.0 to 2.3.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) Updates `thiserror` from 1.0.50 to 1.0.53 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.53) Updates `url` from 2.4.1 to 2.5.0 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.4.1...v2.5.0) Updates `criterion` from `e1a8c9a` to `b913e23` - [Commits](https://github.com/bheisler/criterion.rs/compare/e1a8c9ab2104fbf2d15f700d0038b2675054a2c8...b913e232edd98780961ecfbae836ec77ede49259) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tabled dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: percent-encoding dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Revert http to 0.2.10 This is blocked by `reqwest`. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias <matthias-endler@gmx.net>
2024-01-05 14:46:43 +00:00
"idna 0.5.0",
"percent-encoding",
"serde",
]
[[package]]
name = "utf-8"
2021-11-03 22:45:42 +00:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2020-08-21 22:36:03 +00:00
[[package]]
name = "uuid"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "1.6.1"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
2020-08-21 22:36:03 +00:00
dependencies = [
"getrandom 0.2.11",
]
[[package]]
name = "value-bag"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62ce5bb364b23e66b528d03168df78b38c0f7b6fe17386928f29d5ab2e7cb2f7"
2020-08-21 22:36:03 +00:00
[[package]]
name = "vcpkg"
2021-11-03 22:45:42 +00:00
version = "0.2.15"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-03 22:45:42 +00:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-08-21 22:36:03 +00:00
[[package]]
name = "version_check"
2022-01-10 21:35:37 +00:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-10 21:35:37 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "waker-fn"
version = "1.1.1"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
2020-08-21 22:36:03 +00:00
[[package]]
name = "walkdir"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
version = "0.2.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
dependencies = [
"bumpalo",
"log",
2022-11-05 23:21:00 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.48",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
[[package]]
name = "web-sys"
version = "0.3.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "widestring"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
"windows-targets 0.52.0",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.0",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2022-11-05 23:21:00 +00:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows-targets"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
]
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-11-05 23:21:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-11-05 23:21:00 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
[[package]]
name = "winnow"
version = "0.5.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6"
dependencies = [
"memchr",
]
[[package]]
name = "winreg"
version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
2020-08-21 22:36:03 +00:00
[[package]]
name = "wiremock"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
version = "0.5.22"
2020-08-21 22:36:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Bump the dependencies group with 26 updates (#1311) * Bump the dependencies group with 26 updates Bumps the dependencies group with 26 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.10` | | [const_format](https://github.com/rodrimati1992/const_format_crates) | `0.2.31` | `0.2.32` | | [csv](https://github.com/BurntSushi/rust-csv) | `1.2.2` | `1.3.0` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [http](https://github.com/hyperium/http) | `0.2.9` | `1.0.0` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.96` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` | | [ring](https://github.com/briansmith/ring) | `0.17.0` | `0.17.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.193` | | [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` | | [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.1` | `0.8.8` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.5.19` | `0.5.22` | | [cached](https://github.com/jaemk/cached) | `0.46.0` | `0.46.1` | | [check-if-email-exists](https://github.com/reacherhq/check-if-email-exists) | `0.9.0` | `0.9.1` | | [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.0` | `0.31.2` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` | | [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.16.2` | `0.18.0` | | [criterion](https://github.com/bheisler/criterion.rs) | ``180f4b4`` | ``e1a8c9a`` | Updates `clap` from 4.4.6 to 4.4.10 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.6...v4.4.10) Updates `const_format` from 0.2.31 to 0.2.32 - [Release notes](https://github.com/rodrimati1992/const_format_crates/releases) - [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md) - [Commits](https://github.com/rodrimati1992/const_format_crates/commits) Updates `csv` from 1.2.2 to 1.3.0 - [Commits](https://github.com/BurntSushi/rust-csv/compare/1.2.2...1.3.0) Updates `env_logger` from 0.10.0 to 0.10.1 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `http` from 0.2.9 to 1.0.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.0.0) Updates `openssl-sys` from 0.9.93 to 0.9.96 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.96) Updates `regex` from 1.9.6 to 1.10.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.2) Updates `reqwest` from 0.11.20 to 0.11.22 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.20...v0.11.22) Updates `ring` from 0.17.0 to 0.17.3 - [Commits](https://github.com/briansmith/ring/commits) Updates `serde` from 1.0.188 to 1.0.193 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.193) Updates `serde_json` from 1.0.107 to 1.0.108 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) Updates `tokio` from 1.32.0 to 1.34.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.34.0) Updates `toml` from 0.8.1 to 0.8.8 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.8) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `uuid` from 1.4.1 to 1.6.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.1) Updates `wiremock` from 0.5.19 to 0.5.22 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/LukeMathWalker/wiremock-rs/compare/v0.5.19...v0.5.22) Updates `cached` from 0.46.0 to 0.46.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `check-if-email-exists` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/reacherhq/check-if-email-exists/releases) - [Changelog](https://github.com/reacherhq/check-if-email-exists/blob/master/CHANGELOG.md) - [Commits](https://github.com/reacherhq/check-if-email-exists/compare/v0.9.0...v0.9.1) Updates `hyper` from 0.14.27 to 1.0.1 - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) Updates `octocrab` from 0.31.0 to 0.31.2 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/octocrab/compare/v0.31.0...v0.31.2) Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `thiserror` from 1.0.49 to 1.0.50 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) Updates `typed-builder` from 0.16.2 to 0.18.0 - [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md) - [Commits](https://github.com/idanarye/rust-typed-builder/commits) Updates `criterion` from `180f4b4` to `e1a8c9a` - [Commits](https://github.com/bheisler/criterion.rs/compare/180f4b48964a1fe6bdd7c49cf6d197071bee2e9b...e1a8c9ab2104fbf2d15f700d0038b2675054a2c8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: const_format dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: csv dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ring dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: check-if-email-exists dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: octocrab dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typed-builder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: criterion dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Temporarily revert breaking changes from http crate --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Zahner <thomas.zahner@protonmail.ch>
2023-12-02 12:15:40 +00:00
checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9"
2020-08-21 22:36:03 +00:00
dependencies = [
"assert-json-diff",
"async-trait",
"base64 0.21.5",
Improve concurrency with streams (#330) * Move to from vec to streams Previously we collected all inputs in one vector before checking the links, which is not ideal. Especially when reading many inputs (e.g. by using a glob pattern), this could cause issues like running out of file handles. By moving to streams we avoid that scenario. This is also the first step towards improving performance for many inputs. To stay as close to the pre-stream behaviour, we want to stop processing as soon as an Err value appears in the stream. This is easiest when the stream is consumed in the main thread. Previously, the stream was consumed in a tokio task and the main thread waited for responses. Now, a tokio task waits for responses (and displays them/registers response stats) and the main thread sends links to the ClientPool. To ensure that the main thread waits for all responses to have arrived before finishing the ProgressBar and printing the stats, it waits for the show_results_task to finish. * Return collected links as Stream * Initialize ProgressBar without length because we can't know the amount of links without blocking * Handle stream results in main thread, not in task * Add basic directory support using jwalk * Add test for HTTP protocol file type (http://) * Remove deadpool (once again): Replaced with `futures::StreamExt::for_each_concurrent`. * Refactor main; fix tests * Move commands into separate submodule * Simplify input handling * Simplify collector * Remove unnecessary unwrap * Simplify main * cleanup check * clean up dump command * Handle requests in parallel * Fix formatting and lints Co-authored-by: Timo Freiberg <self@timofreiberg.com>
2021-12-01 17:25:11 +00:00
"deadpool",
"futures",
2020-08-21 22:36:03 +00:00
"futures-timer",
"http-types",
"hyper 0.14.28",
2020-08-21 22:36:03 +00:00
"log",
"once_cell",
2020-08-21 22:36:03 +00:00
"regex",
"serde",
"serde_json",
"tokio",
]
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
[[package]]
name = "zerocopy"
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"