Update compatible Rust deps

Fixes a CVE in tungstenite
This commit is contained in:
Damien Elmes 2023-09-28 09:53:48 +10:00
parent b8390d096e
commit ce11927f97
3 changed files with 332 additions and 350 deletions

491
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -60,17 +60,17 @@ unicase = "=2.6.0" # any changes could invalidate sqlite indexes
ammonia = "3.3.0" ammonia = "3.3.0"
anyhow = "1.0.75" anyhow = "1.0.75"
apple-bundles = "0.17.0" apple-bundles = "0.17.0"
async-compression = { version = "0.4.1", features = ["zstd", "tokio"] } async-compression = { version = "0.4.3", features = ["zstd", "tokio"] }
async-stream = "0.3.5" async-stream = "0.3.5"
async-trait = "0.1.73" async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["multipart", "macros", "headers"] } axum = { version = "0.6.20", features = ["multipart", "macros", "headers"] }
axum-client-ip = "0.4.1" axum-client-ip = "0.4.2"
blake3 = "1.4.1" blake3 = "1.5.0"
bytes = "1.4.0" bytes = "1.5.0"
camino = "1.1.6" camino = "1.1.6"
chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] } chrono = { version = "0.4.31", default-features = false, features = ["std", "clock"] }
clap = { version = "4.3.23", features = ["derive"] } clap = { version = "4.3.24", features = ["derive"] }
coarsetime = "0.1.23" coarsetime = "0.1.28"
convert_case = "0.6.0" convert_case = "0.6.0"
criterion = { version = "0.5.1" } criterion = { version = "0.5.1" }
data-encoding = "2.4.0" data-encoding = "2.4.0"
@ -101,35 +101,35 @@ once_cell = "1.18.0"
phf = { version = "0.11.2", features = ["macros"] } phf = { version = "0.11.2", features = ["macros"] }
pin-project = "1.1.3" pin-project = "1.1.3"
plist = "1.5.0" plist = "1.5.0"
prettyplease = "0.2.12" prettyplease = "0.2.15"
prost = "0.11.9" prost = "0.11.9"
prost-build = "0.11.9" prost-build = "0.11.9"
prost-reflect = "0.11.4" prost-reflect = "0.11.5"
prost-types = "0.11.9" prost-types = "0.11.9"
pulldown-cmark = "0.9.3" pulldown-cmark = "0.9.3"
pyo3 = { version = "0.19.2", features = ["extension-module", "abi3", "abi3-py39"] } pyo3 = { version = "0.19.2", features = ["extension-module", "abi3", "abi3-py39"] }
rand = "0.8.5" rand = "0.8.5"
regex = "1.9.3" regex = "1.9.5"
reqwest = { version = "0.11.19", default-features = false, features = ["json", "socks", "stream", "multipart"] } reqwest = { version = "0.11.20", default-features = false, features = ["json", "socks", "stream", "multipart"] }
rusqlite = { version = "0.29.0", features = ["trace", "functions", "collation", "bundled"] } rusqlite = { version = "0.29.0", features = ["trace", "functions", "collation", "bundled"] }
scopeguard = "1.2.0" scopeguard = "1.2.0"
serde = { version = "1.0.185", features = ["derive"] } serde = { version = "1.0.188", features = ["derive"] }
serde-aux = "4.2.0" serde-aux = "4.2.0"
serde_json = "1.0.105" serde_json = "1.0.107"
serde_repr = "0.1.16" serde_repr = "0.1.16"
serde_tuple = "0.5.0" serde_tuple = "0.5.0"
sha1 = "0.10.5" sha1 = "0.10.6"
sha2 = { version = "0.10.7" } sha2 = { version = "0.10.8" }
simple-file-manifest = "0.11.0" simple-file-manifest = "0.11.0"
snafu = { version = "0.7.5", features = ["backtraces", "rust_1_61"] } snafu = { version = "0.7.5", features = ["backtraces", "rust_1_61"] }
strum = { version = "0.25.0", features = ["derive"] } strum = { version = "0.25.0", features = ["derive"] }
syn = { version = "2.0.29", features = ["parsing", "printing"] } syn = { version = "2.0.37", features = ["parsing", "printing"] }
tar = "0.4.40" tar = "0.4.40"
tempfile = "3.8.0" tempfile = "3.8.0"
termcolor = "1.2.0" termcolor = "1.3.0"
tokio = { version = "1.32", features = ["fs", "rt-multi-thread", "macros", "signal"] } tokio = { version = "1.32", features = ["fs", "rt-multi-thread", "macros", "signal"] }
tokio-util = { version = "0.7.8", features = ["io"] } tokio-util = { version = "0.7.9", features = ["io"] }
tower-http = { version = "0.4.3", features = ["trace"] } tower-http = { version = "0.4.4", features = ["trace"] }
tracing = { version = "0.1.37", features = ["max_level_trace", "release_max_level_debug"] } tracing = { version = "0.1.37", features = ["max_level_trace", "release_max_level_debug"] }
tracing-appender = "0.2.2" tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
@ -138,8 +138,8 @@ unic-langid = { version = "0.9.1", features = ["macros"] }
unic-ucd-category = "0.9.0" unic-ucd-category = "0.9.0"
unicode-normalization = "0.1.22" unicode-normalization = "0.1.22"
utime = "0.3.1" utime = "0.3.1"
walkdir = "2.3.3" walkdir = "2.4.0"
which = "4.4.0" which = "4.4.2"
wiremock = "0.5.19" wiremock = "0.5.19"
xz2 = "0.1.7" xz2 = "0.1.7"
zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] } zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] }

View file

@ -28,7 +28,7 @@
}, },
{ {
"name": "aho-corasick", "name": "aho-corasick",
"version": "1.0.4", "version": "1.1.1",
"authors": "Andrew Gallant <jamslam@gmail.com>", "authors": "Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/BurntSushi/aho-corasick", "repository": "https://github.com/BurntSushi/aho-corasick",
"license": "MIT OR Unlicense", "license": "MIT OR Unlicense",
@ -163,7 +163,7 @@
}, },
{ {
"name": "async-compression", "name": "async-compression",
"version": "0.4.1", "version": "0.4.3",
"authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>", "authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>",
"repository": "https://github.com/Nullus157/async-compression", "repository": "https://github.com/Nullus157/async-compression",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -217,7 +217,7 @@
}, },
{ {
"name": "axum-client-ip", "name": "axum-client-ip",
"version": "0.4.1", "version": "0.4.2",
"authors": null, "authors": null,
"repository": "https://github.com/imbolc/axum-client-ip", "repository": "https://github.com/imbolc/axum-client-ip",
"license": "MIT", "license": "MIT",
@ -262,7 +262,7 @@
}, },
{ {
"name": "base64", "name": "base64",
"version": "0.21.2", "version": "0.21.4",
"authors": "Alice Maz <alice@alicemaz.com>|Marshall Pierce <marshall@mpierce.org>", "authors": "Alice Maz <alice@alicemaz.com>|Marshall Pierce <marshall@mpierce.org>",
"repository": "https://github.com/marshallpierce/rust-base64", "repository": "https://github.com/marshallpierce/rust-base64",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -298,7 +298,7 @@
}, },
{ {
"name": "blake3", "name": "blake3",
"version": "1.4.1", "version": "1.5.0",
"authors": "Jack O'Connor <oconnor663@gmail.com>|Samuel Neves", "authors": "Jack O'Connor <oconnor663@gmail.com>|Samuel Neves",
"repository": "https://github.com/BLAKE3-team/BLAKE3", "repository": "https://github.com/BLAKE3-team/BLAKE3",
"license": "Apache-2.0 OR CC0-1.0", "license": "Apache-2.0 OR CC0-1.0",
@ -325,7 +325,7 @@
}, },
{ {
"name": "bumpalo", "name": "bumpalo",
"version": "3.13.0", "version": "3.14.0",
"authors": "Nick Fitzgerald <fitzgen@gmail.com>", "authors": "Nick Fitzgerald <fitzgen@gmail.com>",
"repository": "https://github.com/fitzgen/bumpalo", "repository": "https://github.com/fitzgen/bumpalo",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -433,7 +433,7 @@
}, },
{ {
"name": "bytes", "name": "bytes",
"version": "1.4.0", "version": "1.5.0",
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>", "authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/tokio-rs/bytes", "repository": "https://github.com/tokio-rs/bytes",
"license": "MIT", "license": "MIT",
@ -469,7 +469,7 @@
}, },
{ {
"name": "chrono", "name": "chrono",
"version": "0.4.26", "version": "0.4.31",
"authors": null, "authors": null,
"repository": "https://github.com/chronotope/chrono", "repository": "https://github.com/chronotope/chrono",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -478,7 +478,7 @@
}, },
{ {
"name": "coarsetime", "name": "coarsetime",
"version": "0.1.23", "version": "0.1.28",
"authors": "Frank Denis <github@pureftpd.org>", "authors": "Frank Denis <github@pureftpd.org>",
"repository": "https://github.com/jedisct1/rust-coarsetime", "repository": "https://github.com/jedisct1/rust-coarsetime",
"license": "ISC", "license": "ISC",
@ -487,7 +487,7 @@
}, },
{ {
"name": "concurrent-queue", "name": "concurrent-queue",
"version": "2.2.0", "version": "2.3.0",
"authors": "Stjepan Glavina <stjepang@gmail.com>|Taiki Endo <te316e89@gmail.com>|John Nunley <jtnunley01@gmail.com>", "authors": "Stjepan Glavina <stjepang@gmail.com>|Taiki Endo <te316e89@gmail.com>|John Nunley <jtnunley01@gmail.com>",
"repository": "https://github.com/smol-rs/concurrent-queue", "repository": "https://github.com/smol-rs/concurrent-queue",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -685,7 +685,7 @@
}, },
{ {
"name": "deadpool-runtime", "name": "deadpool-runtime",
"version": "0.1.2", "version": "0.1.3",
"authors": "Michael P. Jung <michael.jung@terreon.de>", "authors": "Michael P. Jung <michael.jung@terreon.de>",
"repository": "https://github.com/bikeshedder/deadpool", "repository": "https://github.com/bikeshedder/deadpool",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -775,7 +775,7 @@
}, },
{ {
"name": "encoding_rs", "name": "encoding_rs",
"version": "0.8.32", "version": "0.8.33",
"authors": "Henri Sivonen <hsivonen@hsivonen.fi>", "authors": "Henri Sivonen <hsivonen@hsivonen.fi>",
"repository": "https://github.com/hsivonen/encoding_rs", "repository": "https://github.com/hsivonen/encoding_rs",
"license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause",
@ -802,7 +802,7 @@
}, },
{ {
"name": "errno", "name": "errno",
"version": "0.3.2", "version": "0.3.3",
"authors": "Chris Wong <lambda.fairy@gmail.com>", "authors": "Chris Wong <lambda.fairy@gmail.com>",
"repository": "https://github.com/lambda-fairy/rust-errno", "repository": "https://github.com/lambda-fairy/rust-errno",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -865,7 +865,7 @@
}, },
{ {
"name": "fastrand", "name": "fastrand",
"version": "2.0.0", "version": "2.0.1",
"authors": "Stjepan Glavina <stjepang@gmail.com>", "authors": "Stjepan Glavina <stjepang@gmail.com>",
"repository": "https://github.com/smol-rs/fastrand", "repository": "https://github.com/smol-rs/fastrand",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1216,7 +1216,7 @@
}, },
{ {
"name": "hashlink", "name": "hashlink",
"version": "0.8.3", "version": "0.8.4",
"authors": "kyren <kerriganw@gmail.com>", "authors": "kyren <kerriganw@gmail.com>",
"repository": "https://github.com/kyren/hashlink", "repository": "https://github.com/kyren/hashlink",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1225,7 +1225,7 @@
}, },
{ {
"name": "headers", "name": "headers",
"version": "0.3.8", "version": "0.3.9",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/headers", "repository": "https://github.com/hyperium/headers",
"license": "MIT", "license": "MIT",
@ -1252,9 +1252,9 @@
}, },
{ {
"name": "hermit-abi", "name": "hermit-abi",
"version": "0.3.2", "version": "0.3.3",
"authors": "Stefan Lankes", "authors": "Stefan Lankes",
"repository": "https://github.com/hermitcore/rusty-hermit", "repository": "https://github.com/hermitcore/hermit-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Hermit system calls definitions." "description": "Hermit system calls definitions."
@ -1268,6 +1268,15 @@
"license_file": null, "license_file": null,
"description": "Encoding and decoding data into/from hexadecimal representation." "description": "Encoding and decoding data into/from hexadecimal representation."
}, },
{
"name": "home",
"version": "0.5.5",
"authors": "Brian Anderson <andersrb@gmail.com>",
"repository": "https://github.com/rust-lang/cargo",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Shared definitions of home directories."
},
{ {
"name": "html5ever", "name": "html5ever",
"version": "0.26.0", "version": "0.26.0",
@ -1414,7 +1423,7 @@
}, },
{ {
"name": "indexmap", "name": "indexmap",
"version": "2.0.0", "version": "2.0.1",
"authors": null, "authors": null,
"repository": "https://github.com/bluss/indexmap", "repository": "https://github.com/bluss/indexmap",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1531,7 +1540,7 @@
}, },
{ {
"name": "libc", "name": "libc",
"version": "0.2.147", "version": "0.2.148",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/libc", "repository": "https://github.com/rust-lang/libc",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1558,7 +1567,7 @@
}, },
{ {
"name": "linux-raw-sys", "name": "linux-raw-sys",
"version": "0.4.5", "version": "0.4.7",
"authors": "Dan Gohman <dev@sunfishcode.online>", "authors": "Dan Gohman <dev@sunfishcode.online>",
"repository": "https://github.com/sunfishcode/linux-raw-sys", "repository": "https://github.com/sunfishcode/linux-raw-sys",
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT", "license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
@ -1630,16 +1639,16 @@
}, },
{ {
"name": "matchit", "name": "matchit",
"version": "0.7.2", "version": "0.7.3",
"authors": "Ibraheem Ahmed <ibraheem@ibraheem.ca>", "authors": "Ibraheem Ahmed <ibraheem@ibraheem.ca>",
"repository": "https://github.com/ibraheemdev/matchit", "repository": "https://github.com/ibraheemdev/matchit",
"license": "MIT AND BSD-3-Clause", "license": "MIT AND BSD-3-Clause",
"license_file": null, "license_file": null,
"description": "A blazing fast URL router." "description": "A high performance, zero-copy URL router."
}, },
{ {
"name": "matrixmultiply", "name": "matrixmultiply",
"version": "0.3.7", "version": "0.3.8",
"authors": "bluss|R. Janis Goldschmidt", "authors": "bluss|R. Janis Goldschmidt",
"repository": "https://github.com/bluss/matrixmultiply/", "repository": "https://github.com/bluss/matrixmultiply/",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1648,7 +1657,7 @@
}, },
{ {
"name": "memchr", "name": "memchr",
"version": "2.5.0", "version": "2.6.3",
"authors": "Andrew Gallant <jamslam@gmail.com>|bluss", "authors": "Andrew Gallant <jamslam@gmail.com>|bluss",
"repository": "https://github.com/BurntSushi/memchr", "repository": "https://github.com/BurntSushi/memchr",
"license": "MIT OR Unlicense", "license": "MIT OR Unlicense",
@ -1855,7 +1864,7 @@
}, },
{ {
"name": "object", "name": "object",
"version": "0.32.0", "version": "0.32.1",
"authors": null, "authors": null,
"repository": "https://github.com/gimli-rs/object", "repository": "https://github.com/gimli-rs/object",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1873,7 +1882,7 @@
}, },
{ {
"name": "openssl", "name": "openssl",
"version": "0.10.56", "version": "0.10.57",
"authors": "Steven Fackler <sfackler@gmail.com>", "authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/rust-openssl", "repository": "https://github.com/sfackler/rust-openssl",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1900,7 +1909,7 @@
}, },
{ {
"name": "openssl-sys", "name": "openssl-sys",
"version": "0.9.91", "version": "0.9.93",
"authors": "Alex Crichton <alex@alexcrichton.com>|Steven Fackler <sfackler@gmail.com>", "authors": "Alex Crichton <alex@alexcrichton.com>|Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/rust-openssl", "repository": "https://github.com/sfackler/rust-openssl",
"license": "MIT", "license": "MIT",
@ -1927,7 +1936,7 @@
}, },
{ {
"name": "parking", "name": "parking",
"version": "2.1.0", "version": "2.1.1",
"authors": "Stjepan Glavina <stjepang@gmail.com>|The Rust Project Developers", "authors": "Stjepan Glavina <stjepang@gmail.com>|The Rust Project Developers",
"repository": "https://github.com/smol-rs/parking", "repository": "https://github.com/smol-rs/parking",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2080,7 +2089,7 @@
}, },
{ {
"name": "pin-project-lite", "name": "pin-project-lite",
"version": "0.2.12", "version": "0.2.13",
"authors": null, "authors": null,
"repository": "https://github.com/taiki-e/pin-project-lite", "repository": "https://github.com/taiki-e/pin-project-lite",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2134,7 +2143,7 @@
}, },
{ {
"name": "prettyplease", "name": "prettyplease",
"version": "0.2.12", "version": "0.2.15",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/prettyplease", "repository": "https://github.com/dtolnay/prettyplease",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2161,7 +2170,7 @@
}, },
{ {
"name": "proc-macro2", "name": "proc-macro2",
"version": "1.0.66", "version": "1.0.67",
"authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>", "authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/dtolnay/proc-macro2", "repository": "https://github.com/dtolnay/proc-macro2",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2197,7 +2206,7 @@
}, },
{ {
"name": "prost-reflect", "name": "prost-reflect",
"version": "0.11.4", "version": "0.11.5",
"authors": "Andrew Hickman <andrew.hickman1@sky.com>", "authors": "Andrew Hickman <andrew.hickman1@sky.com>",
"repository": "https://github.com/andrewhickman/prost-reflect", "repository": "https://github.com/andrewhickman/prost-reflect",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2314,7 +2323,7 @@
}, },
{ {
"name": "rayon", "name": "rayon",
"version": "1.7.0", "version": "1.8.0",
"authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>", "authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>",
"repository": "https://github.com/rayon-rs/rayon", "repository": "https://github.com/rayon-rs/rayon",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2323,7 +2332,7 @@
}, },
{ {
"name": "rayon-core", "name": "rayon-core",
"version": "1.11.0", "version": "1.12.0",
"authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>", "authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>",
"repository": "https://github.com/rayon-rs/rayon", "repository": "https://github.com/rayon-rs/rayon",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2359,7 +2368,7 @@
}, },
{ {
"name": "regex", "name": "regex",
"version": "1.9.3", "version": "1.9.5",
"authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>", "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/rust-lang/regex", "repository": "https://github.com/rust-lang/regex",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2377,7 +2386,7 @@
}, },
{ {
"name": "regex-automata", "name": "regex-automata",
"version": "0.3.6", "version": "0.3.8",
"authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>", "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2395,7 +2404,7 @@
}, },
{ {
"name": "regex-syntax", "name": "regex-syntax",
"version": "0.7.4", "version": "0.7.5",
"authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>", "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2404,7 +2413,7 @@
}, },
{ {
"name": "reqwest", "name": "reqwest",
"version": "0.11.19", "version": "0.11.20",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/seanmonstar/reqwest", "repository": "https://github.com/seanmonstar/reqwest",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2476,7 +2485,7 @@
}, },
{ {
"name": "rustix", "name": "rustix",
"version": "0.38.8", "version": "0.38.14",
"authors": "Dan Gohman <dev@sunfishcode.online>|Jakub Konka <kubkon@jakubkonka.com>", "authors": "Dan Gohman <dev@sunfishcode.online>|Jakub Konka <kubkon@jakubkonka.com>",
"repository": "https://github.com/bytecodealliance/rustix", "repository": "https://github.com/bytecodealliance/rustix",
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT", "license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
@ -2485,7 +2494,7 @@
}, },
{ {
"name": "rustls", "name": "rustls",
"version": "0.21.6", "version": "0.21.7",
"authors": null, "authors": null,
"repository": "https://github.com/rustls/rustls", "repository": "https://github.com/rustls/rustls",
"license": "Apache-2.0 OR ISC OR MIT", "license": "Apache-2.0 OR ISC OR MIT",
@ -2512,7 +2521,7 @@
}, },
{ {
"name": "rustls-webpki", "name": "rustls-webpki",
"version": "0.101.4", "version": "0.101.6",
"authors": null, "authors": null,
"repository": "https://github.com/rustls/webpki", "repository": "https://github.com/rustls/webpki",
"license": "ISC", "license": "ISC",
@ -2638,7 +2647,7 @@
}, },
{ {
"name": "serde_json", "name": "serde_json",
"version": "1.0.105", "version": "1.0.107",
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/serde-rs/json", "repository": "https://github.com/serde-rs/json",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2701,7 +2710,7 @@
}, },
{ {
"name": "sha1", "name": "sha1",
"version": "0.10.5", "version": "0.10.6",
"authors": "RustCrypto Developers", "authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/hashes", "repository": "https://github.com/RustCrypto/hashes",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2710,7 +2719,7 @@
}, },
{ {
"name": "sharded-slab", "name": "sharded-slab",
"version": "0.1.4", "version": "0.1.6",
"authors": "Eliza Weisman <eliza@buoyant.io>", "authors": "Eliza Weisman <eliza@buoyant.io>",
"repository": "https://github.com/hawkw/sharded-slab", "repository": "https://github.com/hawkw/sharded-slab",
"license": "MIT", "license": "MIT",
@ -2737,7 +2746,7 @@
}, },
{ {
"name": "siphasher", "name": "siphasher",
"version": "0.3.10", "version": "0.3.11",
"authors": "Frank Denis <github@pureftpd.org>", "authors": "Frank Denis <github@pureftpd.org>",
"repository": "https://github.com/jedisct1/rust-siphash", "repository": "https://github.com/jedisct1/rust-siphash",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2755,7 +2764,7 @@
}, },
{ {
"name": "smallvec", "name": "smallvec",
"version": "1.11.0", "version": "1.11.1",
"authors": "The Servo Project Developers", "authors": "The Servo Project Developers",
"repository": "https://github.com/servo/rust-smallvec", "repository": "https://github.com/servo/rust-smallvec",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2800,7 +2809,7 @@
}, },
{ {
"name": "socket2", "name": "socket2",
"version": "0.5.3", "version": "0.5.4",
"authors": "Alex Crichton <alex@alexcrichton.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>", "authors": "Alex Crichton <alex@alexcrichton.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
"repository": "https://github.com/rust-lang/socket2", "repository": "https://github.com/rust-lang/socket2",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2899,7 +2908,7 @@
}, },
{ {
"name": "syn", "name": "syn",
"version": "2.0.29", "version": "2.0.37",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/syn", "repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2935,7 +2944,7 @@
}, },
{ {
"name": "thiserror", "name": "thiserror",
"version": "1.0.47", "version": "1.0.49",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2944,7 +2953,7 @@
}, },
{ {
"name": "thiserror-impl", "name": "thiserror-impl",
"version": "1.0.47", "version": "1.0.49",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2971,7 +2980,7 @@
}, },
{ {
"name": "time", "name": "time",
"version": "0.3.27", "version": "0.3.29",
"authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors", "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
"repository": "https://github.com/time-rs/time", "repository": "https://github.com/time-rs/time",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2980,7 +2989,7 @@
}, },
{ {
"name": "time-core", "name": "time-core",
"version": "0.1.1", "version": "0.1.2",
"authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors", "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
"repository": "https://github.com/time-rs/time", "repository": "https://github.com/time-rs/time",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2989,7 +2998,7 @@
}, },
{ {
"name": "time-macros", "name": "time-macros",
"version": "0.2.13", "version": "0.2.15",
"authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors", "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
"repository": "https://github.com/time-rs/time", "repository": "https://github.com/time-rs/time",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3007,11 +3016,11 @@
}, },
{ {
"name": "tinystr", "name": "tinystr",
"version": "0.7.1", "version": "0.7.3",
"authors": "The ICU4X Project Developers", "authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x", "repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-DFS-2016", "license": null,
"license_file": null, "license_file": "LICENSE",
"description": "A small ASCII-only bounded length string representation." "description": "A small ASCII-only bounded length string representation."
}, },
{ {
@ -3079,7 +3088,7 @@
}, },
{ {
"name": "tokio-util", "name": "tokio-util",
"version": "0.7.8", "version": "0.7.9",
"authors": "Tokio Contributors <team@tokio.rs>", "authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tokio", "repository": "https://github.com/tokio-rs/tokio",
"license": "MIT", "license": "MIT",
@ -3097,7 +3106,7 @@
}, },
{ {
"name": "toml_edit", "name": "toml_edit",
"version": "0.19.14", "version": "0.19.15",
"authors": "Andronik Ordian <write@reusable.software>|Ed Page <eopage@gmail.com>", "authors": "Andronik Ordian <write@reusable.software>|Ed Page <eopage@gmail.com>",
"repository": "https://github.com/toml-rs/toml", "repository": "https://github.com/toml-rs/toml",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3115,7 +3124,7 @@
}, },
{ {
"name": "tower-http", "name": "tower-http",
"version": "0.4.3", "version": "0.4.4",
"authors": "Tower Maintainers <team@tower-rs.com>", "authors": "Tower Maintainers <team@tower-rs.com>",
"repository": "https://github.com/tower-rs/tower-http", "repository": "https://github.com/tower-rs/tower-http",
"license": "MIT", "license": "MIT",
@ -3214,7 +3223,7 @@
}, },
{ {
"name": "typenum", "name": "typenum",
"version": "1.16.0", "version": "1.17.0",
"authors": "Paho Lurie-Gregg <paho@paholg.com>|Andre Bogus <bogusandre@gmail.com>", "authors": "Paho Lurie-Gregg <paho@paholg.com>|Andre Bogus <bogusandre@gmail.com>",
"repository": "https://github.com/paholg/typenum", "repository": "https://github.com/paholg/typenum",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3322,7 +3331,7 @@
}, },
{ {
"name": "unicode-ident", "name": "unicode-ident",
"version": "1.0.11", "version": "1.0.12",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/unicode-ident", "repository": "https://github.com/dtolnay/unicode-ident",
"license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016",
@ -3349,7 +3358,7 @@
}, },
{ {
"name": "unicode-width", "name": "unicode-width",
"version": "0.1.10", "version": "0.1.11",
"authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>", "authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>",
"repository": "https://github.com/unicode-rs/unicode-width", "repository": "https://github.com/unicode-rs/unicode-width",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3367,7 +3376,7 @@
}, },
{ {
"name": "url", "name": "url",
"version": "2.4.0", "version": "2.4.1",
"authors": "The rust-url developers", "authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url", "repository": "https://github.com/servo/rust-url",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -3430,16 +3439,16 @@
}, },
{ {
"name": "waker-fn", "name": "waker-fn",
"version": "1.1.0", "version": "1.1.1",
"authors": "Stjepan Glavina <stjepang@gmail.com>", "authors": "Stjepan Glavina <stjepang@gmail.com>",
"repository": "https://github.com/stjepang/waker-fn", "repository": "https://github.com/smol-rs/waker-fn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Convert closures into wakers" "description": "Convert closures into wakers"
}, },
{ {
"name": "walkdir", "name": "walkdir",
"version": "2.3.3", "version": "2.4.0",
"authors": "Andrew Gallant <jamslam@gmail.com>", "authors": "Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/BurntSushi/walkdir", "repository": "https://github.com/BurntSushi/walkdir",
"license": "MIT OR Unlicense", "license": "MIT OR Unlicense",
@ -3556,7 +3565,7 @@
}, },
{ {
"name": "which", "name": "which",
"version": "4.4.0", "version": "4.4.2",
"authors": "Harry Fei <tiziyuanfang@gmail.com>", "authors": "Harry Fei <tiziyuanfang@gmail.com>",
"repository": "https://github.com/harryfei/which-rs.git", "repository": "https://github.com/harryfei/which-rs.git",
"license": "MIT", "license": "MIT",
@ -3583,7 +3592,7 @@
}, },
{ {
"name": "winapi-util", "name": "winapi-util",
"version": "0.1.5", "version": "0.1.6",
"authors": "Andrew Gallant <jamslam@gmail.com>", "authors": "Andrew Gallant <jamslam@gmail.com>",
"repository": "https://github.com/BurntSushi/winapi-util", "repository": "https://github.com/BurntSushi/winapi-util",
"license": "MIT OR Unlicense", "license": "MIT OR Unlicense",
@ -3691,7 +3700,7 @@
}, },
{ {
"name": "winnow", "name": "winnow",
"version": "0.5.14", "version": "0.5.15",
"authors": null, "authors": null,
"repository": "https://github.com/winnow-rs/winnow", "repository": "https://github.com/winnow-rs/winnow",
"license": "MIT", "license": "MIT",