Skip to content

Commit 44ec8b3

Browse files
committed
Update itertools and allow itertools 0.10 too.
This can help avoid duplicate dependencies when using bindgen as a library.
1 parent 00f0273 commit 44ec8b3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@
198198
# Unreleased
199199
## Added
200200
## Changed
201+
- Allow older itertools. (#2745)
201202
## Removed
202203
## Fixed
203204
## Security

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindgen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }
2929
bitflags = "2.2.1"
3030
cexpr = "0.6"
3131
clang-sys = { version = "1", features = ["clang_6_0"] }
32-
itertools = { version = "0.12.0", default-features = false }
32+
itertools = { version = ">=0.10,<0.13", default-features = false }
3333
lazy_static = "1"
3434
lazycell = "1"
3535
log = { version = "0.4", optional = true }

0 commit comments

Comments
 (0)