Skip to content

Commit 82d7774

Browse files
authored
Allow itertools 0.12 (#948)
0.12 didn't change the syntax of any APIs in-use.
1 parent 2a4aeaf commit 82d7774

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

prost-build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cleanup-markdown = ["dep:pulldown-cmark", "dep:pulldown-cmark-to-cmark"]
2222
[dependencies]
2323
bytes = { version = "1", default-features = false }
2424
heck = "0.4"
25-
itertools = { version = ">=0.10, <0.12", default-features = false, features = ["use_alloc"] }
25+
itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] }
2626
log = "0.4.4"
2727
multimap = { version = "0.8", default-features = false }
2828
petgraph = { version = "0.6", default-features = false }

prost-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ proc_macro = true
1919

2020
[dependencies]
2121
anyhow = "1.0.1"
22-
itertools = { version = ">=0.10, <0.12", default-features = false, features = ["use_alloc"] }
22+
itertools = { version = ">=0.10, <=0.12", default-features = false, features = ["use_alloc"] }
2323
proc-macro2 = "1"
2424
quote = "1"
2525
syn = { version = "2", features = [ "extra-traits" ] }

0 commit comments

Comments
 (0)