mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
format
This commit is contained in:
parent
951ffd7c70
commit
baeb883183
1 changed files with 7 additions and 35 deletions
42
Cargo.toml
42
Cargo.toml
|
|
@ -66,10 +66,7 @@ axum-extra = { version = "0.9.4", features = ["typed-header"] }
|
|||
blake3 = "1.5.4"
|
||||
bytes = "1.7.2"
|
||||
camino = "1.1.9"
|
||||
chrono = { version = "0.4.38", default-features = false, features = [
|
||||
"std",
|
||||
"clock",
|
||||
] }
|
||||
chrono = { version = "0.4.38", default-features = false, features = ["std", "clock"] }
|
||||
clap = { version = "4.5.20", features = ["derive"] }
|
||||
coarsetime = "0.1.34"
|
||||
convert_case = "0.6.0"
|
||||
|
|
@ -113,25 +110,11 @@ prost-build = "0.13"
|
|||
prost-reflect = "0.14"
|
||||
prost-types = "0.13"
|
||||
pulldown-cmark = "0.9.6"
|
||||
pyo3 = { version = "0.24", features = [
|
||||
"extension-module",
|
||||
"abi3",
|
||||
"abi3-py39",
|
||||
] }
|
||||
pyo3 = { version = "0.24", features = ["extension-module", "abi3", "abi3-py39"] }
|
||||
rand = "0.8.5"
|
||||
regex = "1.11.0"
|
||||
reqwest = { version = "0.12.8", default-features = false, features = [
|
||||
"json",
|
||||
"socks",
|
||||
"stream",
|
||||
"multipart",
|
||||
] }
|
||||
rusqlite = { version = "0.30.0", features = [
|
||||
"trace",
|
||||
"functions",
|
||||
"collation",
|
||||
"bundled",
|
||||
] }
|
||||
reqwest = { version = "0.12.8", default-features = false, features = ["json", "socks", "stream", "multipart"] }
|
||||
rusqlite = { version = "0.30.0", features = ["trace", "functions", "collation", "bundled"] }
|
||||
rustls-pemfile = "2.2.0"
|
||||
scopeguard = "1.2.0"
|
||||
serde = { version = "1.0.210", features = ["derive"] }
|
||||
|
|
@ -148,18 +131,10 @@ syn = { version = "2.0.82", features = ["parsing", "printing"] }
|
|||
tar = "0.4.42"
|
||||
tempfile = "3.13.0"
|
||||
termcolor = "1.4.1"
|
||||
tokio = { version = "1.40", features = [
|
||||
"fs",
|
||||
"rt-multi-thread",
|
||||
"macros",
|
||||
"signal",
|
||||
] }
|
||||
tokio = { version = "1.40", features = ["fs", "rt-multi-thread", "macros", "signal"] }
|
||||
tokio-util = { version = "0.7.12", features = ["io"] }
|
||||
tower-http = { version = "0.5", features = ["trace"] }
|
||||
tracing = { version = "0.1.40", features = [
|
||||
"max_level_trace",
|
||||
"release_max_level_debug",
|
||||
] }
|
||||
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"
|
||||
|
|
@ -170,10 +145,7 @@ walkdir = "2.5.0"
|
|||
which = "5.0.0"
|
||||
wiremock = "0.6.2"
|
||||
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"] }
|
||||
zstd = { version = "0.13.2", features = ["zstdmt"] }
|
||||
|
||||
# Apply mild optimizations to our dependencies in dev mode, which among other things
|
||||
|
|
|
|||
Loading…
Reference in a new issue