mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-11-26 20:15:22 +01:00
52fae5c6d4
e.g. PHP debug or ZTS mode are no longer features, but just simply configuration flags.
31 lines
720 B
TOML
31 lines
720 B
TOML
[package]
|
|
name = "ext-php-rs"
|
|
description = "Bindings for the Zend API to build PHP extensions natively in Rust."
|
|
repository = "https://github.com/davidcole1340/ext-php-rs"
|
|
homepage = "https://github.com/davidcole1340/ext-php-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["php", "ffi", "zend"]
|
|
version = "0.3.0"
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
edition = "2018"
|
|
categories = ["api-bindings"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
ext-php-rs-derive = { version = "=0.3.0", path = "./ext-php-rs-derive" }
|
|
|
|
[build-dependencies]
|
|
bindgen = { version = ">= 0.57.0, < 0.58.1" }
|
|
regex = "1"
|
|
cc = "1.0.67"
|
|
|
|
[features]
|
|
alloc = []
|
|
closure = []
|
|
|
|
[workspace]
|
|
members = [
|
|
"ext-php-rs-derive",
|
|
"example/skel"
|
|
]
|