Skip to content

Commit 73f3d21

Browse files
authored
Merge pull request #560 from davidcole1340/chore/binggen-0-72
2 parents 0a39aa5 + f43731b commit 73f3d21

File tree

5 files changed

+539
-297
lines changed

5 files changed

+539
-297
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ autotests = false
1919
bitflags = "2"
2020
parking_lot = { version = "0.12", features = ["arc_lock"] }
2121
cfg-if = "1.0"
22-
once_cell = "1.17"
22+
once_cell = "1.21"
2323
anyhow = { version = "1", optional = true }
2424
ext-php-rs-derive = { version = "=0.11.2", path = "./crates/macros" }
2525

@@ -28,8 +28,8 @@ skeptic = "0.13"
2828

2929
[build-dependencies]
3030
anyhow = "1"
31-
bindgen = "0.70"
32-
cc = "1.0"
31+
bindgen = "0.72"
32+
cc = "1.2"
3333
skeptic = "0.13"
3434

3535
[target.'cfg(windows)'.build-dependencies]

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ fn generate_bindings(defines: &[(&str, &str)], includes: &[PathBuf]) -> Result<S
234234
.no_copy("_zend_array")
235235
.no_debug("_zend_function_entry") // On Windows when the handler uses vectorcall, Debug cannot be derived so we do it in code.
236236
.layout_tests(env::var("EXT_PHP_RS_TEST").is_ok())
237-
.rust_target(RustTarget::Nightly);
237+
.rust_target(RustTarget::nightly());
238238

239239
for binding in ALLOWED_BINDINGS {
240240
bindgen = bindgen

0 commit comments

Comments
 (0)