diff --git a/Cargo.lock b/Cargo.lock index 7d1e6477..6aade65d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1894,6 +1894,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 = "0.4.7" @@ -3079,7 +3088,7 @@ checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5" dependencies = [ "bytes", "heck 0.3.2", - "itertools", + "itertools 0.10.5", "lazy_static", "log", "multimap", @@ -3098,7 +3107,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -4109,7 +4118,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f87e292b4291f154971a43c3774364e2cbcaec599d3f5bf6fa9d122885dbc38a" dependencies = [ - "itertools", + "itertools 0.10.5", "nom", "unicode_categories", ] @@ -4324,7 +4333,7 @@ dependencies = [ "get-port", "hex", "hyper 1.0.1", - "itertools", + "itertools 0.12.0", "libp2p", "mockito", "monero", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 64a4fe2a..c20074b6 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -30,7 +30,7 @@ ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = ed25519-dalek = "1" futures = { version = "0.3", default-features = false } hex = "0.4" -itertools = "0.10" +itertools = "0.12" libp2p = { version = "0.42.2", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns-tokio", "noise", "request-response", "websocket", "ping", "rendezvous", "identify" ] } monero = { version = "0.12", features = [ "serde_support" ] } monero-rpc = { path = "../monero-rpc" }