cargo upgrade --incompatible -p itertools

This commit is contained in:
Bryan Stitt 2023-06-22 09:26:57 -07:00
parent dffff65950
commit 66212b5cf5
2 changed files with 38 additions and 10 deletions

44
Cargo.lock generated
View File

@ -111,6 +111,15 @@ version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
[[package]]
name = "archery"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6cd774058b1b415c4855d8b86436c04bf050c003156fe24bc326fb3fe75c343"
dependencies = [
"static_assertions",
]
[[package]] [[package]]
name = "argh" name = "argh"
version = "0.1.10" version = "0.1.10"
@ -2955,7 +2964,7 @@ name = "influxdb2-derive"
version = "0.1.1" version = "0.1.1"
source = "git+https://github.com/llamanodes/influxdb2?rev=2d125128696a29d7e0b9abc052c928937e7c0579#2d125128696a29d7e0b9abc052c928937e7c0579" source = "git+https://github.com/llamanodes/influxdb2?rev=2d125128696a29d7e0b9abc052c928937e7c0579#2d125128696a29d7e0b9abc052c928937e7c0579"
dependencies = [ dependencies = [
"itertools", "itertools 0.10.5",
"proc-macro2", "proc-macro2",
"quote", "quote",
"regex", "regex",
@ -3060,6 +3069,15 @@ dependencies = [
"either", "either",
] ]
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itoa" name = "itoa"
version = "1.0.6" version = "1.0.6"
@ -3140,7 +3158,7 @@ dependencies = [
"diff", "diff",
"ena", "ena",
"is-terminal", "is-terminal",
"itertools", "itertools 0.10.5",
"lalrpop-util", "lalrpop-util",
"petgraph", "petgraph",
"regex", "regex",
@ -4322,7 +4340,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools", "itertools 0.10.5",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 1.0.109", "syn 1.0.109",
@ -4805,6 +4823,15 @@ dependencies = [
"serde", "serde",
] ]
[[package]]
name = "rpds"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd6ce569b15c331b1e5fd8cf6adb0bf240678b5f0cdc4d0f41e11683f6feba9"
dependencies = [
"archery",
]
[[package]] [[package]]
name = "rsa" name = "rsa"
version = "0.6.1" version = "0.6.1"
@ -5448,12 +5475,13 @@ dependencies = [
[[package]] [[package]]
name = "serde_prometheus" name = "serde_prometheus"
version = "0.2.2" version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f165c1172b0be12cee1771b8d7f38ea324621693acfd3e8b8d3e1951f7df56e" checksum = "c0aecf898386263b0605829138f6f9c85c66ceefe9d6b28f57a846e03a3470f0"
dependencies = [ dependencies = [
"heapless", "heapless",
"nom", "nom",
"rpds",
"serde", "serde",
"serde_plain", "serde_plain",
"thiserror", "thiserror",
@ -5701,7 +5729,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a94494913728908efa7a25a2dd2e4f037e714897985c24273c40596638ed909" checksum = "4a94494913728908efa7a25a2dd2e4f037e714897985c24273c40596638ed909"
dependencies = [ dependencies = [
"itertools", "itertools 0.10.5",
"lalrpop", "lalrpop",
"lalrpop-util", "lalrpop-util",
"phf", "phf",
@ -5760,7 +5788,7 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
dependencies = [ dependencies = [
"itertools", "itertools 0.10.5",
"nom", "nom",
"unicode_categories", "unicode_categories",
] ]
@ -7008,7 +7036,7 @@ dependencies = [
"influxdb2", "influxdb2",
"influxdb2-structmap", "influxdb2-structmap",
"ipnet", "ipnet",
"itertools", "itertools 0.11.0",
"latency", "latency",
"listenfd", "listenfd",
"log", "log",

View File

@ -65,7 +65,7 @@ hostname = "0.3.1"
http = "0.2.9" http = "0.2.9"
hyper = { version = "0.14.26", features = ["full", "nightly"] } hyper = { version = "0.14.26", features = ["full", "nightly"] }
ipnet = "2.7.2" ipnet = "2.7.2"
itertools = "0.10.5" itertools = "0.11.0"
listenfd = "1.0.1" listenfd = "1.0.1"
log = "0.4.19" log = "0.4.19"
mimalloc = { version = "0.1.37", optional = true} mimalloc = { version = "0.1.37", optional = true}
@ -87,7 +87,7 @@ rust_decimal = { version = "1.30.0", features = ["maths"] }
sentry = { version = "0.31.5", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] } sentry = { version = "0.31.5", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] }
serde = { version = "1.0.164", features = [] } serde = { version = "1.0.164", features = [] }
serde_json = { version = "1.0.97", default-features = false, features = ["alloc", "raw_value"] } serde_json = { version = "1.0.97", default-features = false, features = ["alloc", "raw_value"] }
serde_prometheus = "0.2.2" serde_prometheus = "0.2.3"
siwe = "0.5.2" siwe = "0.5.2"
strum = { version = "0.25.0", features = ["derive"] } strum = { version = "0.25.0", features = ["derive"] }
time = "0.3.22" time = "0.3.22"