Skip to content

Commit

Permalink
Bump the dependencies group with 10 updates (#1249)
Browse files Browse the repository at this point in the history
* 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](clap-rs/clap@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](xacrimon/dashmap@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](sfackler/rust-openssl@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](rust-lang/regex@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](seanmonstar/reqwest@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](XAMPPRocky/octocrab@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](dtolnay/thiserror@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](servo/rust-url@v2.4.0...v2.4.1)

Updates `criterion` from `4c19e91` to `180f4b4`
- [Commits](bheisler/criterion.rs@4c19e91...180f4b4)

---
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] <[email protected]>

* Format

* Fix new clippy lints

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias <[email protected]>
  • Loading branch information
dependabot[bot] and mre authored Sep 5, 2023
1 parent 7fe5ce2 commit fbb77d7
Show file tree
Hide file tree
Showing 14 changed files with 92 additions and 95 deletions.
94 changes: 46 additions & 48 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ path = "builder.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = false }
tokio = { version = "1.32.0", features = ["full"] }
regex = "1.9.3"
regex = "1.9.5"
http = "0.2.9"
reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] }
reqwest = { version = "0.11.20", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
4 changes: 2 additions & 2 deletions examples/collect_links/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ path = "collect_links.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = false }
tokio = { version = "1.32.0", features = ["full"] }
regex = "1.9.3"
regex = "1.9.5"
http = "0.2.9"
tokio-stream = "0.1.14"
reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] }
reqwest = { version = "0.11.20", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
1 change: 0 additions & 1 deletion examples/collect_links/collect_links.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ async fn main() -> Result<()> {
.skip_missing_inputs(false) // don't skip missing inputs? (default=false)
.use_html5ever(false) // use html5ever for parsing? (default=false)
.collect_links(inputs) // base url or directory
.await
.collect::<Result<Vec<_>>>()
.await?;

Expand Down
10 changes: 5 additions & 5 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ lychee-lib = { path = "../lychee-lib", version = "0.13.0", default-features = fa

anyhow = "1.0.75"
assert-json-diff = "2.0.2"
clap = { version = "4.3.23", features = ["env", "derive"] }
clap = { version = "4.4.2", features = ["env", "derive"] }
console = "0.15.7"
const_format = "0.2.31"
csv = "1.2.2"
dashmap = { version = "5.5.1", features = ["serde"] }
dashmap = { version = "5.5.3", features = ["serde"] }
env_logger = "0.10.0"
futures = "0.3.28"
headers = "0.3.8"
Expand All @@ -35,10 +35,10 @@ humantime-serde = "1.1.1"
indicatif = "0.17.6"
log = "0.4.20"
once_cell = "1.18.0"
openssl-sys = { version = "0.9.91", optional = true }
openssl-sys = { version = "0.9.92", optional = true }
pad = "0.1.6"
regex = "1.9.3"
reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "json"] }
regex = "1.9.5"
reqwest = { version = "0.11.20", default-features = false, features = ["gzip", "json"] }
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
Expand Down
4 changes: 2 additions & 2 deletions lychee-bin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ async fn run(opts: &LycheeOptions) -> Result<i32> {
.use_html5ever(std::env::var("LYCHEE_USE_HTML5EVER").map_or(false, |x| x == "1"));

if opts.config.dump_inputs {
let sources = collector.collect_sources(inputs).await;
let sources = collector.collect_sources(inputs);
let exit_code = commands::dump_inputs(sources, opts.config.output.as_ref()).await?;

return Ok(exit_code as i32);
Expand All @@ -310,7 +310,7 @@ async fn run(opts: &LycheeOptions) -> Result<i32> {
collector
};

let requests = collector.collect_links(inputs).await;
let requests = collector.collect_links(inputs);

let cache = load_cache(&opts.config).unwrap_or_default();
let cache = Arc::new(cache);
Expand Down
14 changes: 7 additions & 7 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ ip_network = "0.4.1"
jwalk = "0.8.1"
linkify = "0.10.0"
log = "0.4.20"
octocrab = "0.29.3"
octocrab = "0.30.1"
once_cell = "1.18.0"
openssl-sys = { version = "0.9.91", optional = true }
openssl-sys = { version = "0.9.92", optional = true }
path-clean = "1.0.1"
percent-encoding = "2.3.0"
pulldown-cmark = "0.9.3"
regex = "1.9.3"
regex = "1.9.5"
# Use trust-dns to avoid lookup failures on high concurrency
# https://github.com/seanmonstar/reqwest/issues/296
reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
reqwest = { version = "0.11.20", default-features = false, features = ["gzip", "trust-dns", "cookies"] }
reqwest_cookie_store = "0.6.0"
# Make build work on Apple Silicon.
# See https://github.com/briansmith/ring/issues/1163
Expand All @@ -52,10 +52,10 @@ secrecy = "0.8.0"
serde = { version = "1.0.185", features = ["derive"] }
serde_with = "3.3.0"
shellexpand = "3.1.0"
thiserror = "1.0.47"
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["full"] }
typed-builder = "0.15.2"
url = { version = "2.4.0", features = ["serde"] }
typed-builder = "0.16.0"
url = { version = "2.4.1", features = ["serde"] }

[dependencies.par-stream]
version = "0.10.2"
Expand Down
Loading

0 comments on commit fbb77d7

Please sign in to comment.