We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba9a35 commit b33d707Copy full SHA for b33d707
Cargo.toml
@@ -17,7 +17,7 @@ parking_lot = "0.12"
17
cfg-if = "1.0"
18
once_cell = "1.17"
19
anyhow = { version = "1", optional = true }
20
-ext-php-rs-derive = { version = "=0.10.2", path = "./crates/macros" }
+ext-php-rs-derive = { version = "=0.11.0", path = "./crates/macros" }
21
22
[dev-dependencies]
23
skeptic = "0.13"
src/lib.rs
@@ -47,8 +47,8 @@ pub mod prelude {
47
pub use crate::php_println;
48
pub use crate::types::ZendCallable;
49
pub use crate::{
50
- php_class, php_const, php_extern, php_function, php_impl, php_module, wrap_constant,
51
- wrap_function, zend_fastcall, ZvalConvert,
+ php_class, php_const, php_extern, php_function, php_impl, php_interface, php_module,
+ wrap_constant, wrap_function, zend_fastcall, ZvalConvert,
52
};
53
}
54
@@ -62,6 +62,6 @@ pub const PHP_DEBUG: bool = cfg!(php_debug);
62
pub const PHP_ZTS: bool = cfg!(php_zts);
63
64
pub use ext_php_rs_derive::{
65
66
67
0 commit comments