diff --git a/Cargo.lock b/Cargo.lock index f71ce29e..e4cc439e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,7 +32,7 @@ version = "0.1.12" dependencies = [ "bio_edit", "debruijn", - "itertools", + "itertools 0.12.0", "string_utils", "vector_utils", ] @@ -93,7 +93,7 @@ dependencies = [ name = "binary_vec_io" version = "0.1.12" dependencies = [ - "itertools", + "itertools 0.12.0", ] [[package]] @@ -280,7 +280,7 @@ checksum = "346d29ff45270b3642817082a513e55765ef5686b68e6cc0ed595897a64439d5" dependencies = [ "bit-set", "boomphf", - "itertools", + "itertools 0.12.0", "log", "num-traits", "serde", @@ -527,6 +527,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.9" @@ -925,7 +934,7 @@ checksum = "8bdf592881d821b83d471f8af290226c8d51402259e9bb5be7f9f8bdebbb11ac" dependencies = [ "bytes", "heck", - "itertools", + "itertools 0.11.0", "log", "multimap", "once_cell", @@ -946,7 +955,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" dependencies = [ "anyhow", - "itertools", + "itertools 0.11.0", "proc-macro2", "quote", "syn 2.0.37", @@ -1292,7 +1301,7 @@ name = "tables" version = "0.1.5" dependencies = [ "io_utils", - "itertools", + "itertools 0.12.0", "string_utils", ] @@ -1358,7 +1367,7 @@ dependencies = [ "fasta_tools", "hyperbase", "io_utils", - "itertools", + "itertools 0.12.0", "kmer_lookup", "serde", "serde_json", diff --git a/align_tools/Cargo.toml b/align_tools/Cargo.toml index 5212cf3c..cc2eb8d9 100644 --- a/align_tools/Cargo.toml +++ b/align_tools/Cargo.toml @@ -10,6 +10,6 @@ edition = "2018" [dependencies] bio_edit = { version = "0.1", path = "../bio_edit" } debruijn = "0.3" -itertools = ">= 0.8, <= 0.11" +itertools = ">= 0.8, <= 0.13" string_utils = { version = "0.1", path = "../string_utils" } vector_utils = { version = "0.1", path = "../vector_utils" } diff --git a/binary_vec_io/Cargo.toml b/binary_vec_io/Cargo.toml index ba53c01a..8b32548f 100644 --- a/binary_vec_io/Cargo.toml +++ b/binary_vec_io/Cargo.toml @@ -8,4 +8,4 @@ repository = "https://github.com/10XGenomics/rust-toolbox" edition = "2018" [dependencies] -itertools = ">= 0.8, <= 0.11" +itertools = ">= 0.8, <= 0.13" diff --git a/tables/Cargo.toml b/tables/Cargo.toml index d1511184..902a6520 100644 --- a/tables/Cargo.toml +++ b/tables/Cargo.toml @@ -9,5 +9,5 @@ edition = "2018" [dependencies] io_utils = { version = "0.3", path = "../io_utils" } -itertools = ">= 0.8, <= 0.11" +itertools = ">= 0.8, <= 0.13" string_utils = { version = "0.1", path = "../string_utils" } diff --git a/vdj_ann/Cargo.toml b/vdj_ann/Cargo.toml index 103f8706..ab607e11 100644 --- a/vdj_ann/Cargo.toml +++ b/vdj_ann/Cargo.toml @@ -18,7 +18,7 @@ debruijn = "0.3" fasta_tools = { version = "0.1", path = "../fasta_tools" } hyperbase = { version = "0.1", path = "../hyperbase" } io_utils = { version = "0.3", path = "../io_utils" } -itertools = ">= 0.8, <= 0.11" +itertools = ">= 0.8, <= 0.13" kmer_lookup = { version = "0.1", path = "../kmer_lookup" } serde = { version = "1", features = ["derive"] } serde_json = "1"