summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-03-15 20:12:15 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-03-15 20:12:15 +0800
commite873656d53d4071f70e73514a96eaa4cbfd23fc4 (patch)
treefbf842c148009ae2e7a8cd07cde5f29440b8846d
parent80b43caf3bf46f6afea3deaf1b36f985a7025c19 (diff)
minor update: itertools
-rw-r--r--Cargo.lock13
-rw-r--r--Cargo.toml2
2 files changed, 12 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9879497..329a9aa 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -189,7 +189,7 @@ dependencies = [
"failure",
"failure-tools",
"filesize",
- "itertools",
+ "itertools 0.9.0",
"jwalk",
"log",
"num_cpus",
@@ -292,6 +292,15 @@ dependencies = [
]
[[package]]
+name = "itertools"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
+dependencies = [
+ "either",
+]
+
+[[package]]
name = "jwalk"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -606,7 +615,7 @@ dependencies = [
"bitflags",
"cassowary",
"either",
- "itertools",
+ "itertools 0.8.2",
"log",
"termion",
"unicode-segmentation",
diff --git a/Cargo.toml b/Cargo.toml
index 7c08bee..9ec68b1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ termion = "1.5.2"
atty = "0.2.11"
tui = "0.8.0"
petgraph = "0.5"
-itertools = "0.8.0"
+itertools = "0.9.0"
open = "1.2.2"
log = "0.4.6"
tui-react = { path = "./tui-react", version = "0.2" }