mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Update Rust deps
This commit is contained in:
parent
9122aab3ad
commit
3b7c5d71ab
3 changed files with 491 additions and 622 deletions
762
Cargo.lock
generated
762
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
52
Cargo.toml
52
Cargo.toml
|
@ -46,31 +46,31 @@ unicase = "=2.6.0" # any changes could invalidate sqlite indexes
|
|||
|
||||
# normal
|
||||
ammonia = "3.3.0"
|
||||
anyhow = "1.0.71"
|
||||
anyhow = "1.0.75"
|
||||
apple-bundles = "0.17.0"
|
||||
async-compression = { version = "0.4.0", features = ["zstd", "tokio"] }
|
||||
async-compression = { version = "0.4.1", features = ["zstd", "tokio"] }
|
||||
async-stream = "0.3.5"
|
||||
async-trait = "0.1.68"
|
||||
axum = { version = "0.6.18", features = ["multipart", "macros", "headers"] }
|
||||
async-trait = "0.1.73"
|
||||
axum = { version = "0.6.20", features = ["multipart", "macros", "headers"] }
|
||||
axum-client-ip = "0.4.1"
|
||||
blake3 = "1.4.0"
|
||||
blake3 = "1.4.1"
|
||||
bytes = "1.4.0"
|
||||
camino = "1.1.4"
|
||||
camino = "1.1.6"
|
||||
chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] }
|
||||
clap = { version = "4.3.10", features = ["derive"] }
|
||||
clap = { version = "4.3.23", features = ["derive"] }
|
||||
coarsetime = "0.1.23"
|
||||
convert_case = "0.6.0"
|
||||
criterion = { version = "0.5.1" }
|
||||
data-encoding = "2.4.0"
|
||||
difflib = "0.4.0"
|
||||
flate2 = "1.0.26"
|
||||
flate2 = "1.0.27"
|
||||
fluent = "0.16.0"
|
||||
fluent-bundle = "0.15.2"
|
||||
fluent-syntax = "0.11.0"
|
||||
fnv = "1.0.7"
|
||||
futures = "0.3.28"
|
||||
glob = "0.3.1"
|
||||
globset = "0.4.10"
|
||||
globset = "0.4.13"
|
||||
hex = "0.4.3"
|
||||
htmlescape = "0.3.1"
|
||||
hyper = "0.14.27"
|
||||
|
@ -87,37 +87,37 @@ num_cpus = "1.16.0"
|
|||
num_enum = "0.6.1"
|
||||
once_cell = "1.18.0"
|
||||
phf = { version = "0.11.2", features = ["macros"] }
|
||||
pin-project = "1.1.1"
|
||||
plist = "1.4.3"
|
||||
prettyplease = "0.2.9"
|
||||
pin-project = "1.1.3"
|
||||
plist = "1.5.0"
|
||||
prettyplease = "0.2.12"
|
||||
prost = "0.11.9"
|
||||
prost-build = "0.11.9"
|
||||
prost-reflect = "0.11.4"
|
||||
prost-types = "0.11.9"
|
||||
pulldown-cmark = "0.9.3"
|
||||
pyo3 = { version = "0.19.0", features = ["extension-module", "abi3", "abi3-py39"] }
|
||||
pyo3 = { version = "0.19.2", features = ["extension-module", "abi3", "abi3-py39"] }
|
||||
rand = "0.8.5"
|
||||
regex = "1.9.1"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["json", "socks", "stream", "multipart"] }
|
||||
regex = "1.9.3"
|
||||
reqwest = { version = "0.11.19", default-features = false, features = ["json", "socks", "stream", "multipart"] }
|
||||
rusqlite = { version = "0.29.0", features = ["trace", "functions", "collation", "bundled"] }
|
||||
scopeguard = "1.1.0"
|
||||
serde = { version = "1.0.164", features = ["derive"] }
|
||||
scopeguard = "1.2.0"
|
||||
serde = { version = "1.0.185", features = ["derive"] }
|
||||
serde-aux = "4.2.0"
|
||||
serde_json = "1.0.99"
|
||||
serde_repr = "0.1.12"
|
||||
serde_json = "1.0.105"
|
||||
serde_repr = "0.1.16"
|
||||
serde_tuple = "0.5.0"
|
||||
sha1 = "0.10.5"
|
||||
sha2 = { version = "0.10.7" }
|
||||
simple-file-manifest = "0.11.0"
|
||||
snafu = { version = "0.7.4", features = ["backtraces", "rust_1_61"] }
|
||||
snafu = { version = "0.7.5", features = ["backtraces", "rust_1_61"] }
|
||||
strum = { version = "0.25.0", features = ["derive"] }
|
||||
syn = { version = "2.0.22", features = ["parsing", "printing"] }
|
||||
tar = "0.4.38"
|
||||
tempfile = "3.6.0"
|
||||
syn = { version = "2.0.29", features = ["parsing", "printing"] }
|
||||
tar = "0.4.40"
|
||||
tempfile = "3.8.0"
|
||||
termcolor = "1.2.0"
|
||||
tokio = { version = "1.29", 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"] }
|
||||
tower-http = { version = "0.4.1", features = ["trace"] }
|
||||
tower-http = { version = "0.4.3", features = ["trace"] }
|
||||
tracing = { version = "0.1.37", features = ["max_level_trace", "release_max_level_debug"] }
|
||||
tracing-appender = "0.2.2"
|
||||
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
|
||||
|
@ -131,7 +131,7 @@ which = "4.4.0"
|
|||
wiremock = "0.5.19"
|
||||
xz2 = "0.1.7"
|
||||
zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] }
|
||||
zstd = { version = "0.12.3", features = ["zstdmt"] }
|
||||
zstd = { version = "0.12.4", features = ["zstdmt"] }
|
||||
envy = "0.4.2"
|
||||
dirs = "5.0.1"
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{
|
||||
"name": "addr2line",
|
||||
"version": "0.20.0",
|
||||
"version": "0.21.0",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/gimli-rs/addr2line",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
{
|
||||
"name": "aho-corasick",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.4",
|
||||
"authors": "Andrew Gallant <jamslam@gmail.com>",
|
||||
"repository": "https://github.com/BurntSushi/aho-corasick",
|
||||
"license": "MIT OR Unlicense",
|
||||
|
@ -37,7 +37,7 @@
|
|||
},
|
||||
{
|
||||
"name": "allocator-api2",
|
||||
"version": "0.2.15",
|
||||
"version": "0.2.16",
|
||||
"authors": "Zakarum <zaq.dev@icloud.com>",
|
||||
"repository": "https://github.com/zakarumych/allocator-api2",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -118,7 +118,7 @@
|
|||
},
|
||||
{
|
||||
"name": "anyhow",
|
||||
"version": "1.0.71",
|
||||
"version": "1.0.75",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/anyhow",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -154,7 +154,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-channel",
|
||||
"version": "1.8.0",
|
||||
"version": "1.9.0",
|
||||
"authors": "Stjepan Glavina <stjepang@gmail.com>",
|
||||
"repository": "https://github.com/smol-rs/async-channel",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -163,7 +163,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-compression",
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.1",
|
||||
"authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>",
|
||||
"repository": "https://github.com/Nullus157/async-compression",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -190,7 +190,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-trait",
|
||||
"version": "0.1.68",
|
||||
"version": "0.1.73",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/async-trait",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -208,7 +208,7 @@
|
|||
},
|
||||
{
|
||||
"name": "axum",
|
||||
"version": "0.6.18",
|
||||
"version": "0.6.20",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/tokio-rs/axum",
|
||||
"license": "MIT",
|
||||
|
@ -235,7 +235,7 @@
|
|||
},
|
||||
{
|
||||
"name": "axum-macros",
|
||||
"version": "0.3.7",
|
||||
"version": "0.3.8",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/tokio-rs/axum",
|
||||
"license": "MIT",
|
||||
|
@ -244,7 +244,7 @@
|
|||
},
|
||||
{
|
||||
"name": "backtrace",
|
||||
"version": "0.3.68",
|
||||
"version": "0.3.69",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/rust-lang/backtrace-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -280,7 +280,7 @@
|
|||
},
|
||||
{
|
||||
"name": "bitflags",
|
||||
"version": "2.3.3",
|
||||
"version": "2.4.0",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/bitflags/bitflags",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -289,7 +289,7 @@
|
|||
},
|
||||
{
|
||||
"name": "blake3",
|
||||
"version": "1.4.0",
|
||||
"version": "1.4.1",
|
||||
"authors": "Jack O'Connor <oconnor663@gmail.com>|Samuel Neves",
|
||||
"repository": "https://github.com/BLAKE3-team/BLAKE3",
|
||||
"license": "Apache-2.0 OR CC0-1.0",
|
||||
|
@ -343,7 +343,7 @@
|
|||
},
|
||||
{
|
||||
"name": "camino",
|
||||
"version": "1.1.4",
|
||||
"version": "1.1.6",
|
||||
"authors": "Without Boats <saoirse@without.boats>|Ashley Williams <ashley666ashley@gmail.com>|Steve Klabnik <steve@steveklabnik.com>|Rain <rain@sunshowers.io>",
|
||||
"repository": "https://github.com/camino-rs/camino",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -352,7 +352,7 @@
|
|||
},
|
||||
{
|
||||
"name": "cc",
|
||||
"version": "1.0.79",
|
||||
"version": "1.0.83",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/cc-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -397,7 +397,7 @@
|
|||
},
|
||||
{
|
||||
"name": "constant_time_eq",
|
||||
"version": "0.2.6",
|
||||
"version": "0.3.0",
|
||||
"authors": "Cesar Eduardo Barros <cesarb@cesarb.eti.br>",
|
||||
"repository": "https://github.com/cesarb/constant_time_eq",
|
||||
"license": "Apache-2.0 OR CC0-1.0 OR MIT-0",
|
||||
|
@ -433,7 +433,7 @@
|
|||
},
|
||||
{
|
||||
"name": "cpufeatures",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"authors": "RustCrypto Developers",
|
||||
"repository": "https://github.com/RustCrypto/utils",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -521,6 +521,15 @@
|
|||
"license_file": null,
|
||||
"description": "Dead simple async pool utitities for sync managers"
|
||||
},
|
||||
{
|
||||
"name": "deranged",
|
||||
"version": "0.3.8",
|
||||
"authors": "Jacob Pratt <jacob@jhpratt.dev>",
|
||||
"repository": "https://github.com/jhpratt/deranged",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Ranged integers"
|
||||
},
|
||||
{
|
||||
"name": "difflib",
|
||||
"version": "0.4.0",
|
||||
|
@ -577,7 +586,7 @@
|
|||
},
|
||||
{
|
||||
"name": "either",
|
||||
"version": "1.8.1",
|
||||
"version": "1.9.0",
|
||||
"authors": "bluss",
|
||||
"repository": "https://github.com/bluss/either",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -604,7 +613,7 @@
|
|||
},
|
||||
{
|
||||
"name": "equivalent",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/cuviper/equivalent",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -613,7 +622,7 @@
|
|||
},
|
||||
{
|
||||
"name": "errno",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"authors": "Chris Wong <lambda.fairy@gmail.com>",
|
||||
"repository": "https://github.com/lambda-fairy/rust-errno",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -665,6 +674,15 @@
|
|||
"license_file": null,
|
||||
"description": "A simple and fast random number generator"
|
||||
},
|
||||
{
|
||||
"name": "fastrand",
|
||||
"version": "2.0.0",
|
||||
"authors": "Stjepan Glavina <stjepang@gmail.com>",
|
||||
"repository": "https://github.com/smol-rs/fastrand",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "A simple and fast random number generator"
|
||||
},
|
||||
{
|
||||
"name": "fixedbitset",
|
||||
"version": "0.4.2",
|
||||
|
@ -676,7 +694,7 @@
|
|||
},
|
||||
{
|
||||
"name": "flate2",
|
||||
"version": "1.0.26",
|
||||
"version": "1.0.27",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>|Josh Triplett <josh@joshtriplett.org>",
|
||||
"repository": "https://github.com/rust-lang/flate2-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -910,7 +928,7 @@
|
|||
},
|
||||
{
|
||||
"name": "gimli",
|
||||
"version": "0.27.3",
|
||||
"version": "0.28.0",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/gimli-rs/gimli",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -919,7 +937,7 @@
|
|||
},
|
||||
{
|
||||
"name": "h2",
|
||||
"version": "0.3.20",
|
||||
"version": "0.3.21",
|
||||
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/hyperium/h2",
|
||||
"license": "MIT",
|
||||
|
@ -1036,7 +1054,7 @@
|
|||
},
|
||||
{
|
||||
"name": "http-range-header",
|
||||
"version": "0.3.0",
|
||||
"version": "0.3.1",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/MarcusGrass/parse-range-headers",
|
||||
"license": "MIT",
|
||||
|
@ -1063,7 +1081,7 @@
|
|||
},
|
||||
{
|
||||
"name": "httpdate",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"authors": "Pyfisch <pyfisch@posteo.org>",
|
||||
"repository": "https://github.com/pyfisch/httpdate",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1081,9 +1099,9 @@
|
|||
},
|
||||
{
|
||||
"name": "hyper-rustls",
|
||||
"version": "0.24.0",
|
||||
"version": "0.24.1",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/ctz/hyper-rustls",
|
||||
"repository": "https://github.com/rustls/hyper-rustls",
|
||||
"license": "Apache-2.0 OR ISC OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Rustls+hyper integration for pure rust HTTPS"
|
||||
|
@ -1196,15 +1214,6 @@
|
|||
"license_file": null,
|
||||
"description": "Unicode Plural Rules categorizer for numeric input."
|
||||
},
|
||||
{
|
||||
"name": "io-lifetimes",
|
||||
"version": "1.0.11",
|
||||
"authors": "Dan Gohman <dev@sunfishcode.online>",
|
||||
"repository": "https://github.com/sunfishcode/io-lifetimes",
|
||||
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
|
||||
"license_file": null,
|
||||
"description": "A low-level I/O ownership and borrowing library"
|
||||
},
|
||||
{
|
||||
"name": "ipnet",
|
||||
"version": "2.8.0",
|
||||
|
@ -1234,7 +1243,7 @@
|
|||
},
|
||||
{
|
||||
"name": "itoa",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.9",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/itoa",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1288,7 +1297,7 @@
|
|||
},
|
||||
{
|
||||
"name": "linux-raw-sys",
|
||||
"version": "0.3.8",
|
||||
"version": "0.4.5",
|
||||
"authors": "Dan Gohman <dev@sunfishcode.online>",
|
||||
"repository": "https://github.com/sunfishcode/linux-raw-sys",
|
||||
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
|
||||
|
@ -1306,7 +1315,7 @@
|
|||
},
|
||||
{
|
||||
"name": "log",
|
||||
"version": "0.4.19",
|
||||
"version": "0.4.20",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/rust-lang/log",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1360,10 +1369,10 @@
|
|||
},
|
||||
{
|
||||
"name": "matchit",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.2",
|
||||
"authors": "Ibraheem Ahmed <ibraheem@ibraheem.ca>",
|
||||
"repository": "https://github.com/ibraheemdev/matchit",
|
||||
"license": "MIT",
|
||||
"license": "MIT AND BSD-3-Clause",
|
||||
"license_file": null,
|
||||
"description": "A blazing fast URL router."
|
||||
},
|
||||
|
@ -1495,7 +1504,7 @@
|
|||
},
|
||||
{
|
||||
"name": "num-traits",
|
||||
"version": "0.2.15",
|
||||
"version": "0.2.16",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/rust-num/num-traits",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1531,7 +1540,7 @@
|
|||
},
|
||||
{
|
||||
"name": "object",
|
||||
"version": "0.31.1",
|
||||
"version": "0.32.0",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/gimli-rs/object",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1549,7 +1558,7 @@
|
|||
},
|
||||
{
|
||||
"name": "openssl",
|
||||
"version": "0.10.55",
|
||||
"version": "0.10.56",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>",
|
||||
"repository": "https://github.com/sfackler/rust-openssl",
|
||||
"license": "Apache-2.0",
|
||||
|
@ -1576,7 +1585,7 @@
|
|||
},
|
||||
{
|
||||
"name": "openssl-sys",
|
||||
"version": "0.9.90",
|
||||
"version": "0.9.91",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>|Steven Fackler <sfackler@gmail.com>",
|
||||
"repository": "https://github.com/sfackler/rust-openssl",
|
||||
"license": "MIT",
|
||||
|
@ -1648,7 +1657,7 @@
|
|||
},
|
||||
{
|
||||
"name": "petgraph",
|
||||
"version": "0.6.3",
|
||||
"version": "0.6.4",
|
||||
"authors": "bluss|mitchmindtree",
|
||||
"repository": "https://github.com/petgraph/petgraph",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1729,7 +1738,7 @@
|
|||
},
|
||||
{
|
||||
"name": "pin-project",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.3",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/taiki-e/pin-project",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1738,7 +1747,7 @@
|
|||
},
|
||||
{
|
||||
"name": "pin-project-internal",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.3",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/taiki-e/pin-project",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1747,7 +1756,7 @@
|
|||
},
|
||||
{
|
||||
"name": "pin-project-lite",
|
||||
"version": "0.2.9",
|
||||
"version": "0.2.12",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/taiki-e/pin-project-lite",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1801,7 +1810,7 @@
|
|||
},
|
||||
{
|
||||
"name": "prettyplease",
|
||||
"version": "0.2.9",
|
||||
"version": "0.2.12",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/prettyplease",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1828,7 +1837,7 @@
|
|||
},
|
||||
{
|
||||
"name": "proc-macro2",
|
||||
"version": "1.0.63",
|
||||
"version": "1.0.66",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/dtolnay/proc-macro2",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1891,7 +1900,7 @@
|
|||
},
|
||||
{
|
||||
"name": "quote",
|
||||
"version": "1.0.29",
|
||||
"version": "1.0.33",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/quote",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1990,7 +1999,7 @@
|
|||
},
|
||||
{
|
||||
"name": "regex",
|
||||
"version": "1.9.1",
|
||||
"version": "1.9.3",
|
||||
"authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
|
||||
"repository": "https://github.com/rust-lang/regex",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2008,7 +2017,7 @@
|
|||
},
|
||||
{
|
||||
"name": "regex-automata",
|
||||
"version": "0.3.4",
|
||||
"version": "0.3.6",
|
||||
"authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
|
||||
"repository": "https://github.com/rust-lang/regex/tree/master/regex-automata",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2035,7 +2044,7 @@
|
|||
},
|
||||
{
|
||||
"name": "reqwest",
|
||||
"version": "0.11.18",
|
||||
"version": "0.11.19",
|
||||
"authors": "Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/seanmonstar/reqwest",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2089,7 +2098,7 @@
|
|||
},
|
||||
{
|
||||
"name": "rustix",
|
||||
"version": "0.37.21",
|
||||
"version": "0.38.8",
|
||||
"authors": "Dan Gohman <dev@sunfishcode.online>|Jakub Konka <kubkon@jakubkonka.com>",
|
||||
"repository": "https://github.com/bytecodealliance/rustix",
|
||||
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
|
||||
|
@ -2098,7 +2107,7 @@
|
|||
},
|
||||
{
|
||||
"name": "rustls",
|
||||
"version": "0.21.2",
|
||||
"version": "0.21.6",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/rustls/rustls",
|
||||
"license": "Apache-2.0 OR ISC OR MIT",
|
||||
|
@ -2125,16 +2134,16 @@
|
|||
},
|
||||
{
|
||||
"name": "rustls-webpki",
|
||||
"version": "0.100.1",
|
||||
"version": "0.101.4",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/rustls/webpki",
|
||||
"license": null,
|
||||
"license_file": "LICENSE",
|
||||
"license": "ISC",
|
||||
"license_file": null,
|
||||
"description": "Web PKI X.509 Certificate Verification."
|
||||
},
|
||||
{
|
||||
"name": "rustversion",
|
||||
"version": "1.0.12",
|
||||
"version": "1.0.14",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/rustversion",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2143,7 +2152,7 @@
|
|||
},
|
||||
{
|
||||
"name": "ryu",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.15",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/ryu",
|
||||
"license": "Apache-2.0 OR BSL-1.0",
|
||||
|
@ -2161,7 +2170,7 @@
|
|||
},
|
||||
{
|
||||
"name": "schannel",
|
||||
"version": "0.1.21",
|
||||
"version": "0.1.22",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>|Steffen Butzer <steffen.butzer@outlook.com>",
|
||||
"repository": "https://github.com/steffengy/schannel-rs",
|
||||
"license": "MIT",
|
||||
|
@ -2170,7 +2179,7 @@
|
|||
},
|
||||
{
|
||||
"name": "scopeguard",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"authors": "bluss",
|
||||
"repository": "https://github.com/bluss/scopeguard",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2188,7 +2197,7 @@
|
|||
},
|
||||
{
|
||||
"name": "security-framework",
|
||||
"version": "2.9.1",
|
||||
"version": "2.9.2",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
|
||||
"repository": "https://github.com/kornelski/rust-security-framework",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2197,7 +2206,7 @@
|
|||
},
|
||||
{
|
||||
"name": "security-framework-sys",
|
||||
"version": "2.9.0",
|
||||
"version": "2.9.1",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
|
||||
"repository": "https://github.com/kornelski/rust-security-framework",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2215,7 +2224,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde",
|
||||
"version": "1.0.164",
|
||||
"version": "1.0.185",
|
||||
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/serde-rs/serde",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2233,7 +2242,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde_derive",
|
||||
"version": "1.0.164",
|
||||
"version": "1.0.185",
|
||||
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/serde-rs/serde",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2242,7 +2251,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde_json",
|
||||
"version": "1.0.99",
|
||||
"version": "1.0.105",
|
||||
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/serde-rs/json",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2251,7 +2260,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde_path_to_error",
|
||||
"version": "0.1.11",
|
||||
"version": "0.1.14",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/path-to-error",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2269,7 +2278,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde_repr",
|
||||
"version": "0.1.12",
|
||||
"version": "0.1.16",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/serde-repr",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2341,7 +2350,7 @@
|
|||
},
|
||||
{
|
||||
"name": "slab",
|
||||
"version": "0.4.8",
|
||||
"version": "0.4.9",
|
||||
"authors": "Carl Lerche <me@carllerche.com>",
|
||||
"repository": "https://github.com/tokio-rs/slab",
|
||||
"license": "MIT",
|
||||
|
@ -2350,7 +2359,7 @@
|
|||
},
|
||||
{
|
||||
"name": "smallvec",
|
||||
"version": "1.10.0",
|
||||
"version": "1.11.0",
|
||||
"authors": "The Servo Project Developers",
|
||||
"repository": "https://github.com/servo/rust-smallvec",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2359,7 +2368,7 @@
|
|||
},
|
||||
{
|
||||
"name": "snafu",
|
||||
"version": "0.7.4",
|
||||
"version": "0.7.5",
|
||||
"authors": "Jake Goulding <jake.goulding@gmail.com>",
|
||||
"repository": "https://github.com/shepmaster/snafu",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2368,7 +2377,7 @@
|
|||
},
|
||||
{
|
||||
"name": "snafu-derive",
|
||||
"version": "0.7.4",
|
||||
"version": "0.7.5",
|
||||
"authors": "Jake Goulding <jake.goulding@gmail.com>",
|
||||
"repository": "https://github.com/shepmaster/snafu",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2393,6 +2402,15 @@
|
|||
"license_file": null,
|
||||
"description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended."
|
||||
},
|
||||
{
|
||||
"name": "socket2",
|
||||
"version": "0.5.3",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
|
||||
"repository": "https://github.com/rust-lang/socket2",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended."
|
||||
},
|
||||
{
|
||||
"name": "spin",
|
||||
"version": "0.5.2",
|
||||
|
@ -2440,7 +2458,7 @@
|
|||
},
|
||||
{
|
||||
"name": "strum_macros",
|
||||
"version": "0.25.0",
|
||||
"version": "0.25.2",
|
||||
"authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
|
||||
"repository": "https://github.com/Peternator7/strum",
|
||||
"license": "MIT",
|
||||
|
@ -2467,7 +2485,7 @@
|
|||
},
|
||||
{
|
||||
"name": "syn",
|
||||
"version": "2.0.22",
|
||||
"version": "2.0.29",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/syn",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2485,7 +2503,7 @@
|
|||
},
|
||||
{
|
||||
"name": "tempfile",
|
||||
"version": "3.6.0",
|
||||
"version": "3.8.0",
|
||||
"authors": "Steven Allen <steven@stebalien.com>|The Rust Project Developers|Ashley Mannix <ashleymannix@live.com.au>|Jason White <me@jasonwhite.io>",
|
||||
"repository": "https://github.com/Stebalien/tempfile",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2503,7 +2521,7 @@
|
|||
},
|
||||
{
|
||||
"name": "thiserror",
|
||||
"version": "1.0.40",
|
||||
"version": "1.0.47",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/thiserror",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2512,7 +2530,7 @@
|
|||
},
|
||||
{
|
||||
"name": "thiserror-impl",
|
||||
"version": "1.0.40",
|
||||
"version": "1.0.47",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/thiserror",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2530,7 +2548,7 @@
|
|||
},
|
||||
{
|
||||
"name": "time",
|
||||
"version": "0.3.22",
|
||||
"version": "0.3.27",
|
||||
"authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
|
||||
"repository": "https://github.com/time-rs/time",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2548,7 +2566,7 @@
|
|||
},
|
||||
{
|
||||
"name": "time-macros",
|
||||
"version": "0.2.9",
|
||||
"version": "0.2.13",
|
||||
"authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
|
||||
"repository": "https://github.com/time-rs/time",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2584,7 +2602,7 @@
|
|||
},
|
||||
{
|
||||
"name": "tokio",
|
||||
"version": "1.29.1",
|
||||
"version": "1.32.0",
|
||||
"authors": "Tokio Contributors <team@tokio.rs>",
|
||||
"repository": "https://github.com/tokio-rs/tokio",
|
||||
"license": "MIT",
|
||||
|
@ -2647,7 +2665,7 @@
|
|||
},
|
||||
{
|
||||
"name": "toml_edit",
|
||||
"version": "0.19.11",
|
||||
"version": "0.19.14",
|
||||
"authors": "Andronik Ordian <write@reusable.software>|Ed Page <eopage@gmail.com>",
|
||||
"repository": "https://github.com/toml-rs/toml",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2665,7 +2683,7 @@
|
|||
},
|
||||
{
|
||||
"name": "tower-http",
|
||||
"version": "0.4.1",
|
||||
"version": "0.4.3",
|
||||
"authors": "Tower Maintainers <team@tower-rs.com>",
|
||||
"repository": "https://github.com/tower-rs/tower-http",
|
||||
"license": "MIT",
|
||||
|
@ -2872,7 +2890,7 @@
|
|||
},
|
||||
{
|
||||
"name": "unicode-ident",
|
||||
"version": "1.0.9",
|
||||
"version": "1.0.11",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/unicode-ident",
|
||||
"license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016",
|
||||
|
@ -3070,7 +3088,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-streams",
|
||||
"version": "0.2.3",
|
||||
"version": "0.3.0",
|
||||
"authors": "Mattias Buelens <mattias@buelens.com>",
|
||||
"repository": "https://github.com/MattiasBuelens/wasm-streams/",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3086,19 +3104,10 @@
|
|||
"license_file": null,
|
||||
"description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL"
|
||||
},
|
||||
{
|
||||
"name": "webpki",
|
||||
"version": "0.22.0",
|
||||
"authors": "Brian Smith <brian@briansmith.org>",
|
||||
"repository": "https://github.com/briansmith/webpki",
|
||||
"license": null,
|
||||
"license_file": "LICENSE",
|
||||
"description": "Web PKI X.509 Certificate Verification."
|
||||
},
|
||||
{
|
||||
"name": "webpki-roots",
|
||||
"version": "0.22.6",
|
||||
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
|
||||
"version": "0.25.2",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/rustls/webpki-roots",
|
||||
"license": "MPL-2.0",
|
||||
"license_file": null,
|
||||
|
@ -3158,15 +3167,6 @@
|
|||
"license_file": null,
|
||||
"description": "Rust for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows-sys",
|
||||
"version": "0.42.0",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Rust for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows-sys",
|
||||
"version": "0.48.0",
|
||||
|
@ -3178,7 +3178,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows-targets",
|
||||
"version": "0.48.1",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3187,16 +3187,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_aarch64_gnullvm",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_aarch64_gnullvm",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3205,16 +3196,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_aarch64_msvc",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_aarch64_msvc",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3223,16 +3205,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_i686_gnu",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_i686_gnu",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3241,16 +3214,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_i686_msvc",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_i686_msvc",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3259,16 +3223,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_x86_64_gnu",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_x86_64_gnu",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3277,16 +3232,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_x86_64_gnullvm",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_x86_64_gnullvm",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3295,16 +3241,7 @@
|
|||
},
|
||||
{
|
||||
"name": "windows_x86_64_msvc",
|
||||
"version": "0.42.2",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Import lib for Windows"
|
||||
},
|
||||
{
|
||||
"name": "windows_x86_64_msvc",
|
||||
"version": "0.48.0",
|
||||
"version": "0.48.5",
|
||||
"authors": "Microsoft",
|
||||
"repository": "https://github.com/microsoft/windows-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -3313,7 +3250,7 @@
|
|||
},
|
||||
{
|
||||
"name": "winnow",
|
||||
"version": "0.4.7",
|
||||
"version": "0.5.14",
|
||||
"authors": null,
|
||||
"repository": "https://github.com/winnow-rs/winnow",
|
||||
"license": "MIT",
|
||||
|
@ -3322,7 +3259,7 @@
|
|||
},
|
||||
{
|
||||
"name": "winreg",
|
||||
"version": "0.10.1",
|
||||
"version": "0.50.0",
|
||||
"authors": "Igor Shaula <gentoo90@gmail.com>",
|
||||
"repository": "https://github.com/gentoo90/winreg-rs",
|
||||
"license": "MIT",
|
||||
|
@ -3349,7 +3286,7 @@
|
|||
},
|
||||
{
|
||||
"name": "zstd",
|
||||
"version": "0.12.3+zstd.1.5.2",
|
||||
"version": "0.12.4",
|
||||
"authors": "Alexandre Bury <alexandre.bury@gmail.com>",
|
||||
"repository": "https://github.com/gyscos/zstd-rs",
|
||||
"license": "MIT",
|
||||
|
@ -3358,7 +3295,7 @@
|
|||
},
|
||||
{
|
||||
"name": "zstd-safe",
|
||||
"version": "6.0.5+zstd.1.5.4",
|
||||
"version": "6.0.6",
|
||||
"authors": "Alexandre Bury <alexandre.bury@gmail.com>",
|
||||
"repository": "https://github.com/gyscos/zstd-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
|
Loading…
Reference in a new issue