summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2020-05-29 11:43:40 -0700
committertummychow <tummychow@users.noreply.github.com>2020-05-29 11:43:40 -0700
commita14e8ca6a70fd1279d4d490d9acaa21434f0783b (patch)
treecd7f251c657eb87c9ca695e4b9f7a6d554bf55f6
parent5a43000374c0de1a28c77cee00801025a75ae408 (diff)
bump to slog-term 2.6
contains the TERM=dumb fix, so now we can remove our cargo patch
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml5
2 files changed, 5 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 855e221..431919c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4)",
+ "slog-term 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -417,8 +417,8 @@ dependencies = [
[[package]]
name = "slog-term"
-version = "2.5.0"
-source = "git+https://github.com/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4#1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
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/slog-rs/term?rev=1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4)" = "<none>"
+"checksum slog-term 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6"
"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"
diff --git a/Cargo.toml b/Cargo.toml
index ffdf659..321097c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,13 +27,10 @@ default-features = false
[dependencies]
clap = "~2.30"
slog = "~2.5"
-slog-term = "~2.5"
+slog-term = "~2.6"
slog-async = "~2.5"
failure = "~0.1"
memchr = "~2.0"
-[patch.crates-io]
-slog-term = { git = "https://github.com/slog-rs/term", rev = "1a1f6ecaec82c6ade58806e6b315a1e888d9c2b4" }
-
[dev-dependencies]
tempdir = "~0.3"