Skip to content

Commit

Permalink
Update itertools and allow itertools 0.10 too.
Browse files Browse the repository at this point in the history
This can help avoid duplicate dependencies when using
bindgen as a library.
  • Loading branch information
emilio committed Feb 4, 2024
1 parent 00f0273 commit 44ec8b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
# Unreleased
## Added
## Changed
- Allow older itertools. (#2745)
## Removed
## Fixed
## Security
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }
bitflags = "2.2.1"
cexpr = "0.6"
clang-sys = { version = "1", features = ["clang_6_0"] }
itertools = { version = "0.12.0", default-features = false }
itertools = { version = ">=0.10,<0.13", default-features = false }
lazy_static = "1"
lazycell = "1"
log = { version = "0.4", optional = true }
Expand Down

0 comments on commit 44ec8b3

Please sign in to comment.