mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
roll back slog-term due to Windows break (2/2)
The cargo.toml update was missing from the previous commit, and term was included directly when it didn't need to be.
This commit is contained in:
parent
77accb458f
commit
4bcd2b68ab
3 changed files with 3 additions and 11 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -97,7 +97,6 @@ dependencies = [
|
||||||
"slog-term",
|
"slog-term",
|
||||||
"strum",
|
"strum",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"term",
|
|
||||||
"tokio",
|
"tokio",
|
||||||
"unic-langid",
|
"unic-langid",
|
||||||
"unicase",
|
"unicase",
|
||||||
|
|
|
@ -26,6 +26,9 @@ unicase = "=2.6.0"
|
||||||
# transitive dependency; 0.1.7 is currently broken on Windows (perhaps
|
# transitive dependency; 0.1.7 is currently broken on Windows (perhaps
|
||||||
# only in Bazel)
|
# only in Bazel)
|
||||||
proc-macro-nested = "=0.1.6"
|
proc-macro-nested = "=0.1.6"
|
||||||
|
# slog-term 2.7+ depends on term 0.7.0, which is currently broken on Windows,
|
||||||
|
# as cargo-raze doesn't seem to be included the rustversion crate.
|
||||||
|
slog-term = "=2.6.0"
|
||||||
|
|
||||||
askama = "0.10.1"
|
askama = "0.10.1"
|
||||||
async-compression = { version = "0.3.5", features = ["stream", "gzip"] }
|
async-compression = { version = "0.3.5", features = ["stream", "gzip"] }
|
||||||
|
@ -70,7 +73,6 @@ sha1 = "0.6.0"
|
||||||
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_debug"] }
|
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_debug"] }
|
||||||
slog-async = "2.5.0"
|
slog-async = "2.5.0"
|
||||||
slog-envlogger = "2.2.0"
|
slog-envlogger = "2.2.0"
|
||||||
slog-term = "2.6.0"
|
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
|
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
|
||||||
unic-langid = { version = "0.9", features = ["macros"] }
|
unic-langid = { version = "0.9", features = ["macros"] }
|
||||||
|
|
|
@ -444,15 +444,6 @@ alias(
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "term",
|
|
||||||
actual = "@raze__term__0_6_1//:term",
|
|
||||||
tags = [
|
|
||||||
"cargo-raze",
|
|
||||||
"manual",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "tokio",
|
name = "tokio",
|
||||||
actual = "@raze__tokio__0_2_25//:tokio",
|
actual = "@raze__tokio__0_2_25//:tokio",
|
||||||
|
|
Loading…
Reference in a new issue