mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Update Rust + Rust deps
This commit is contained in:
parent
6b3b545a9a
commit
dca962c81e
5 changed files with 995 additions and 941 deletions
1392
Cargo.lock
generated
1392
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
64
Cargo.toml
64
Cargo.toml
|
@ -55,41 +55,41 @@ unicase = "=2.6.0" # any changes could invalidate sqlite indexes
|
|||
|
||||
# normal
|
||||
ammonia = "3.3.0"
|
||||
anyhow = "1.0.80"
|
||||
anyhow = "1.0.86"
|
||||
apple-bundles = "0.17.0"
|
||||
async-compression = { version = "0.4.6", features = ["zstd", "tokio"] }
|
||||
async-compression = { version = "0.4.11", features = ["zstd", "tokio"] }
|
||||
async-stream = "0.3.5"
|
||||
async-trait = "0.1.77"
|
||||
async-trait = "0.1.80"
|
||||
axum = { version = "0.6.20", features = ["multipart", "macros", "headers"] }
|
||||
axum-client-ip = "0.4.2"
|
||||
blake3 = "1.5.0"
|
||||
bytes = "1.5.0"
|
||||
camino = "1.1.6"
|
||||
chrono = { version = "0.4.34", default-features = false, features = ["std", "clock"] }
|
||||
blake3 = "1.5.1"
|
||||
bytes = "1.6.0"
|
||||
camino = "1.1.7"
|
||||
chrono = { version = "0.4.38", default-features = false, features = ["std", "clock"] }
|
||||
clap = { version = "4.3.24", features = ["derive"] }
|
||||
coarsetime = "0.1.34"
|
||||
convert_case = "0.6.0"
|
||||
criterion = { version = "0.5.1" }
|
||||
csv = "1.3.0"
|
||||
data-encoding = "2.5.0"
|
||||
data-encoding = "2.6.0"
|
||||
difflib = "0.4.0"
|
||||
flate2 = "1.0.28"
|
||||
fluent = "0.16.0"
|
||||
fluent-bundle = "0.15.2"
|
||||
fluent-syntax = "0.11.0"
|
||||
flate2 = "1.0.30"
|
||||
fluent = "0.16.1"
|
||||
fluent-bundle = "0.15.3"
|
||||
fluent-syntax = "0.11.1"
|
||||
fnv = "1.0.7"
|
||||
futures = "0.3.30"
|
||||
glob = "0.3.1"
|
||||
globset = "0.4.14"
|
||||
hex = "0.4.3"
|
||||
htmlescape = "0.3.1"
|
||||
hyper = "0.14.28"
|
||||
hyper = "0.14.29"
|
||||
id_tree = "1.8.0"
|
||||
inflections = "1.1.1"
|
||||
intl-memoizer = "0.5.1"
|
||||
intl-memoizer = "0.5.2"
|
||||
itertools = "0.12.1"
|
||||
junction = "1.0.0"
|
||||
lazy_static = "1.4.0"
|
||||
junction = "1.1.0"
|
||||
lazy_static = "1.5.0"
|
||||
maplit = "1.0.2"
|
||||
nom = "7.1.3"
|
||||
num-format = "0.4.4"
|
||||
|
@ -98,9 +98,9 @@ num_enum = "0.7.2"
|
|||
once_cell = "1.19.0"
|
||||
pbkdf2 = { version = "0.12", features = ["simple"] }
|
||||
phf = { version = "0.11.2", features = ["macros"] }
|
||||
pin-project = "1.1.4"
|
||||
pin-project = "1.1.5"
|
||||
plist = "1.5.1"
|
||||
prettyplease = "0.2.16"
|
||||
prettyplease = "0.2.20"
|
||||
prost = "0.12.3"
|
||||
prost-build = "0.12.3"
|
||||
prost-reflect = "0.12.0"
|
||||
|
@ -108,42 +108,42 @@ prost-types = "0.12.3"
|
|||
pulldown-cmark = "0.9.6"
|
||||
pyo3 = { version = "0.20.3", features = ["extension-module", "abi3", "abi3-py39"] }
|
||||
rand = "0.8.5"
|
||||
regex = "1.10.3"
|
||||
reqwest = { version = "0.11.24", default-features = false, features = ["json", "socks", "stream", "multipart"] }
|
||||
regex = "1.10.5"
|
||||
reqwest = { version = "0.11.27", default-features = false, features = ["json", "socks", "stream", "multipart"] }
|
||||
rusqlite = { version = "0.30.0", features = ["trace", "functions", "collation", "bundled"] }
|
||||
rustls-pemfile = "2.1.2"
|
||||
scopeguard = "1.2.0"
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
serde = { version = "1.0.203", features = ["derive"] }
|
||||
serde-aux = "4.5.0"
|
||||
serde_json = "1.0.114"
|
||||
serde_repr = "0.1.18"
|
||||
serde_json = "1.0.120"
|
||||
serde_repr = "0.1.19"
|
||||
serde_tuple = "0.5.0"
|
||||
sha1 = "0.10.6"
|
||||
sha2 = { version = "0.10.8" }
|
||||
simple-file-manifest = "0.11.0"
|
||||
snafu = { version = "0.8.1", features = ["rust_1_61"] }
|
||||
strum = { version = "0.26.1", features = ["derive"] }
|
||||
syn = { version = "2.0.51", features = ["parsing", "printing"] }
|
||||
tar = "0.4.40"
|
||||
snafu = { version = "0.8.3", features = ["rust_1_61"] }
|
||||
strum = { version = "0.26.3", features = ["derive"] }
|
||||
syn = { version = "2.0.68", features = ["parsing", "printing"] }
|
||||
tar = "0.4.41"
|
||||
tempfile = "3.10.1"
|
||||
termcolor = "1.4.1"
|
||||
tokio = { version = "1.36", features = ["fs", "rt-multi-thread", "macros", "signal"] }
|
||||
tokio-util = { version = "0.7.10", features = ["io"] }
|
||||
tokio = { version = "1.38", features = ["fs", "rt-multi-thread", "macros", "signal"] }
|
||||
tokio-util = { version = "0.7.11", features = ["io"] }
|
||||
tower-http = { version = "0.4.4", features = ["trace"] }
|
||||
tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_debug"] }
|
||||
tracing-appender = "0.2.3"
|
||||
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
|
||||
tugger-windows-codesign = "0.10.0"
|
||||
unic-langid = { version = "0.9.4", features = ["macros"] }
|
||||
unic-langid = { version = "0.9.5", features = ["macros"] }
|
||||
unic-ucd-category = "0.9.0"
|
||||
unicode-normalization = "0.1.23"
|
||||
utime = "0.3.1"
|
||||
walkdir = "2.4.0"
|
||||
walkdir = "2.5.0"
|
||||
which = "5.0.0"
|
||||
wiremock = "0.5.22"
|
||||
xz2 = "0.1.7"
|
||||
zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] }
|
||||
zstd = { version = "0.13.0", features = ["zstdmt"] }
|
||||
zstd = { version = "0.13.2", features = ["zstdmt"] }
|
||||
envy = "0.4.2"
|
||||
dirs = "5.0.1"
|
||||
dunce = "1.0.4"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -47,6 +47,7 @@ pub(super) fn write_nodes(nodes: &[Node]) -> String {
|
|||
nodes.iter().map(write_node).collect()
|
||||
}
|
||||
|
||||
#[allow(clippy::to_string_trait_impl)]
|
||||
impl ToString for Node {
|
||||
fn to_string(&self) -> String {
|
||||
write_node(self)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[toolchain]
|
||||
# older versions may fail to compile; newer versions may fail the clippy tests
|
||||
channel = "1.75"
|
||||
channel = "1.79"
|
||||
|
|
Loading…
Reference in a new issue