From 1b1ca0d6f20c8a1515d384730ef17ce286bdc441 Mon Sep 17 00:00:00 2001 From: Will Browning <20662079+willbrowningme@users.noreply.github.com> Date: Thu, 6 May 2021 10:25:22 +0100 Subject: [PATCH] Remove default-features=false from bindgen --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 992bae108b..10f8d6ff90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,6 @@ bitflags = "1.2.1" ext-php-rs-derive = { version = "=0.0.5", path = "./ext-php-rs-derive" } [build-dependencies] -bindgen = { version = ">= 0.57.0, < 0.58.1", default-features = false } +bindgen = { version = ">= 0.57.0, < 0.58.1" } regex = "1" cc = "1.0.67"