use upstream repo with fix

upstream accepted my patch, let's go back to using their repo. (honestly
the reason i'm doing this is i deleted my fork and forgot i was
referencing it here...)
This commit is contained in:
tummychow 2020-05-23 23:34:57 -07:00
parent d012183388
commit 3e14d55a83
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View file

@ -197,7 +197,7 @@ dependencies = [
"memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"slog-async 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"slog-term 2.5.0 (git+https://github.com/tummychow/term?branch=fallback-no-color)",
"slog-term 2.5.0 (git+https://github.com/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4)",
"tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -418,7 +418,7 @@ dependencies = [
[[package]]
name = "slog-term"
version = "2.5.0"
source = "git+https://github.com/tummychow/term?branch=fallback-no-color#5218667c7c83654e3b6c4134f48cc8196efb52b6"
source = "git+https://github.com/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4#1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4"
dependencies = [
"atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
@ -629,7 +629,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af"
"checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"
"checksum slog-async 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "51b3336ce47ce2f96673499fc07eb85e3472727b9a7a2959964b002c2ce8fbbb"
"checksum slog-term 2.5.0 (git+https://github.com/tummychow/term?branch=fallback-no-color)" = "<none>"
"checksum slog-term 2.5.0 (git+https://github.com/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4)" = "<none>"
"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
"checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"

View file

@ -33,7 +33,7 @@ failure = "~0.1"
memchr = "~2.0"
[patch.crates-io]
slog-term = { git = "https://github.com/tummychow/term", branch = "fallback-no-color" }
slog-term = { git = "https://github.com/slog-rs/term", rev = "1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4" }
[dev-dependencies]
tempdir = "~0.3"