Skip to content

Commit ac3e4e4

Browse files
committed
Avoid new validation in proc-macro2
Evidently, we run afoul of this.
1 parent 8fe4d63 commit ac3e4e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ peeking_take_while = "0.1.2"
5353
quote = { version = "0.5", default-features = false }
5454
regex = "0.2"
5555
which = "1.0.2"
56-
proc-macro2 = { version = "0.3.2", default-features = false }
56+
# New validation in 0.3.6 breaks bindgen-integration:
57+
# https://github.com/alexcrichton/proc-macro2/commit/489c642.
58+
proc-macro2 = { version = "0.3.2, < 0.3.6", default-features = false }
5759

5860
[dependencies.env_logger]
5961
optional = true

0 commit comments

Comments
 (0)