mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Pin chrono; update compatible Rust crates
Also pin reqwest in our other crates
This commit is contained in:
parent
b7e04381a0
commit
b4f4df0030
10 changed files with 451 additions and 269 deletions
626
Cargo.lock
generated
626
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -10,10 +10,10 @@ rust-version.workspace = true
|
|||
|
||||
[dependencies]
|
||||
camino = "1.1.1"
|
||||
flate2 = "1.0.24"
|
||||
flate2 = "1.0.25"
|
||||
sha2 = { version = "0.10.6" }
|
||||
tar = "0.4.38"
|
||||
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
|
||||
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
|
||||
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
||||
xz2 = "0.1.7"
|
||||
zip = "0.6.3"
|
||||
|
@ -24,5 +24,5 @@ rustls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
|
|||
native-tls = ["reqwest/native-tls"]
|
||||
|
||||
[dependencies.reqwest]
|
||||
version = "0.11.3"
|
||||
version = "=0.11.3"
|
||||
default-features = false
|
||||
|
|
|
@ -10,7 +10,7 @@ rust-version.workspace = true
|
|||
|
||||
[dependencies]
|
||||
camino = "1.1.1"
|
||||
clap = { version = "4.0.25", features = ["derive"] }
|
||||
clap = { version = "4.0.29", features = ["derive"] }
|
||||
junction = "0.2.0"
|
||||
termcolor = "1.1.3"
|
||||
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
||||
|
|
|
@ -15,7 +15,7 @@ workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
|||
|
||||
# /cargo/update.py needs to be run if updating the version below
|
||||
[dependencies.pyo3]
|
||||
version = "0.17.1"
|
||||
version = "0.17.3"
|
||||
features = ["extension-module", "abi3", "abi3-py39"]
|
||||
|
||||
[lib]
|
||||
|
|
|
@ -9,15 +9,15 @@ license.workspace = true
|
|||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.53"
|
||||
anyhow = "1.0.66"
|
||||
apple-bundles = "0.6.0"
|
||||
camino = "1.1.1"
|
||||
clap = { version = "4.0.26", features = ["derive"] }
|
||||
clap = { version = "4.0.29", features = ["derive"] }
|
||||
glob = "0.3.0"
|
||||
lazy_static = "1.4.0"
|
||||
plist = "1.3.1"
|
||||
serde = { version = "1.0.147", features = ["derive"] }
|
||||
serde_json = "1.0.88"
|
||||
serde = { version = "1.0.148", features = ["derive"] }
|
||||
serde_json = "1.0.89"
|
||||
tugger-file-manifest = "0.6.0"
|
||||
walkdir = "2.3.2"
|
||||
workspace-hack = { version = "0.1", path = "../../../tools/workspace-hack" }
|
||||
|
|
|
@ -9,12 +9,12 @@ license.workspace = true
|
|||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.53"
|
||||
anyhow = "1.0.66"
|
||||
camino = "1.1.1"
|
||||
clap = { version = "4.0.26", features = ["derive"] }
|
||||
clap = { version = "4.0.29", features = ["derive"] }
|
||||
glob = "0.3.0"
|
||||
slog = "2.7.0"
|
||||
slog-term = "2.8.0"
|
||||
slog-term = "2.9.0"
|
||||
tugger-windows-codesign = "0.6.0"
|
||||
walkdir = "2.3.2"
|
||||
workspace-hack = { version = "0.1", path = "../../../tools/workspace-hack" }
|
||||
|
|
|
@ -27,12 +27,12 @@ required-features = ["bench"]
|
|||
# After updating anything below, run ../cargo/update.py
|
||||
|
||||
[build-dependencies]
|
||||
prost-build = "0.11.1"
|
||||
prost-build = "0.11.3"
|
||||
which = "4.3.0"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.9.1"
|
||||
tokio = { version = "1.21", features = ["macros"] }
|
||||
env_logger = "0.9.3"
|
||||
tokio = { version = "1.22", features = ["macros"] }
|
||||
|
||||
[dependencies.reqwest]
|
||||
version = "=0.11.3"
|
||||
|
@ -48,21 +48,23 @@ pct-str = { git = "https://github.com/timothee-haudebourg/pct-str.git", rev = "4
|
|||
# pinned as any changes could invalidate sqlite indexes
|
||||
unicase = "=2.6.0"
|
||||
|
||||
# pinned until the deprecation warnings can be addressed
|
||||
chrono = "=0.4.22"
|
||||
|
||||
criterion = { version = "0.4.0", optional = true }
|
||||
|
||||
ammonia = "3.2.1"
|
||||
async-trait = "0.1.57"
|
||||
blake3 = "1.3.1"
|
||||
bytes = "1.2.1"
|
||||
chrono = "0.4.22"
|
||||
ammonia = "3.3.0"
|
||||
async-trait = "0.1.59"
|
||||
blake3 = "1.3.3"
|
||||
bytes = "1.3.0"
|
||||
coarsetime = "0.1.22"
|
||||
convert_case = "0.6.0"
|
||||
dissimilar = "1.0.4"
|
||||
flate2 = "1.0.24"
|
||||
flate2 = "1.0.25"
|
||||
fluent = "0.16.0"
|
||||
fluent-bundle = "0.15.2"
|
||||
fnv = "1.0.7"
|
||||
futures = "0.3.24"
|
||||
futures = "0.3.25"
|
||||
hex = "0.4.3"
|
||||
htmlescape = "0.3.1"
|
||||
id_tree = "1.8.0"
|
||||
|
@ -70,35 +72,35 @@ itertools = "0.10.5"
|
|||
lazy_static = "1.4.0"
|
||||
nom = "7.1.1"
|
||||
num-integer = "0.1.45"
|
||||
num_cpus = "1.13.1"
|
||||
num_cpus = "1.14.0"
|
||||
num_enum = "0.5.7"
|
||||
once_cell = "1.15.0"
|
||||
once_cell = "1.16.0"
|
||||
pin-project = "1.0.12"
|
||||
prost = "0.11.0"
|
||||
prost = "0.11.3"
|
||||
pulldown-cmark = "0.9.2"
|
||||
rand = "0.8.5"
|
||||
regex = "1.6.0"
|
||||
regex = "1.7.0"
|
||||
rusqlite = { version = "0.28.0", features = ["trace", "functions", "collation", "bundled"] }
|
||||
scopeguard = "1.1.0"
|
||||
serde = "1.0.145"
|
||||
serde-aux = "4.0.0"
|
||||
serde_derive = "1.0.145"
|
||||
serde_json = "1.0.85"
|
||||
serde = "1.0.148"
|
||||
serde-aux = "4.1.2"
|
||||
serde_derive = "1.0.148"
|
||||
serde_json = "1.0.89"
|
||||
serde_repr = "0.1.9"
|
||||
serde_tuple = "0.5.0"
|
||||
sha1 = "0.6.0"
|
||||
sha1 = "0.6.1"
|
||||
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_debug"] }
|
||||
slog-async = "2.7.0"
|
||||
slog-envlogger = "2.2.0"
|
||||
slog-term = "2.9.0"
|
||||
snafu = { version = "0.7.2", features = ["backtraces"] }
|
||||
snafu = { version = "0.7.3", features = ["backtraces"] }
|
||||
strum = { version = "0.24.1", features = ["derive"] }
|
||||
tempfile = "3.3.0"
|
||||
tokio = { version = "1.21", features = ["fs", "rt-multi-thread"] }
|
||||
tokio = { version = "1.22", features = ["fs", "rt-multi-thread"] }
|
||||
tokio-util = { version = "0.7.4", features = ["io"] }
|
||||
unic-ucd-category = "0.9.0"
|
||||
unicode-normalization = "0.1.22"
|
||||
utime = "0.3.1"
|
||||
workspace-hack = { version = "0.1", path = "../tools/workspace-hack" }
|
||||
zip = { version = "0.6.2", default-features = false, features = ["deflate", "time"] }
|
||||
zip = { version = "0.6.3", default-features = false, features = ["deflate", "time"] }
|
||||
zstd = { version = "0.11.2", features = ["zstdmt"] }
|
||||
|
|
|
@ -17,18 +17,18 @@ path = "src/lib.rs"
|
|||
[build-dependencies]
|
||||
fluent-syntax = "0.11.0"
|
||||
fluent = "0.16.0"
|
||||
unic-langid = { version = "0.9.0", features = ["macros"] }
|
||||
serde = { version = "1.0.145", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
unic-langid = { version = "0.9.1", features = ["macros"] }
|
||||
serde = { version = "1.0.148", features = ["derive"] }
|
||||
serde_json = "1.0.89"
|
||||
inflections = "1.1.1"
|
||||
|
||||
[dependencies]
|
||||
fluent = "0.16.0"
|
||||
fluent-bundle = "0.15.2"
|
||||
intl-memoizer = "0.5.1"
|
||||
num-format = "0.4.0"
|
||||
num-format = "0.4.3"
|
||||
phf = { version = "0.11.1", features = ["macros"] }
|
||||
serde = { version = "1.0.145", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
unic-langid = { version = "0.9.0", features = ["macros"] }
|
||||
serde = { version = "1.0.148", features = ["derive"] }
|
||||
serde_json = "1.0.89"
|
||||
unic-langid = { version = "0.9.1", features = ["macros"] }
|
||||
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
||||
|
|
|
@ -18,7 +18,7 @@ path = "src/lib.rs"
|
|||
[dependencies]
|
||||
fluent-syntax = "0.11.0"
|
||||
lazy_static = "1.4.0"
|
||||
regex = "1.6.0"
|
||||
serde_json = "1.0.85"
|
||||
regex = "1.7.0"
|
||||
serde_json = "1.0.89"
|
||||
walkdir = "2"
|
||||
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
||||
|
|
|
@ -17,10 +17,10 @@ anki = { path = ".." }
|
|||
|
||||
linkcheck = { git = "https://github.com/ankitects/linkcheck.git", rev = "2f20798ce521cc594d510d4e417e76d5eac04d4b" }
|
||||
|
||||
futures = "0.3.24"
|
||||
futures = "0.3.25"
|
||||
itertools = "0.10.5"
|
||||
strum = { version = "0.24.1", features = ["derive"] }
|
||||
tokio = { version = "1.21.1", features = ["full"] }
|
||||
tokio = { version = "1.22.0", features = ["full"] }
|
||||
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
||||
|
||||
[features]
|
||||
|
@ -28,5 +28,5 @@ rustls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
|
|||
native-tls = ["reqwest/native-tls"]
|
||||
|
||||
[dependencies.reqwest]
|
||||
version = "0.11.3"
|
||||
version = "=0.11.3"
|
||||
default-features = false
|
||||
|
|
Loading…
Reference in a new issue