mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-11-26 20:15:22 +01:00
d9e40ea4d2
* Change describe types to C ABI, check ext-php-rs version Rust doesn't have a stable ABI so the describe function and types are now C ABI compatible, however, the internal types `Cow`, `Vec`, `Option` aren't. Check `ext-php-rs` versions to check compatibility between the CLI and the extension. * CLI requires 0.7.1 * Bump versions * Replace standard library types with ABI-stable replacements * Change option type
35 lines
810 B
TOML
35 lines
810 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.7.1"
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
edition = "2018"
|
|
categories = ["api-bindings"]
|
|
exclude = ["/.github", "/.crates", "/guide"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
parking_lot = "0.11.2"
|
|
ext-php-rs-derive = { version = "=0.7.1", path = "./crates/macros" }
|
|
|
|
[build-dependencies]
|
|
bindgen = { version = "0.59" }
|
|
regex = "1"
|
|
cc = "1.0"
|
|
|
|
[features]
|
|
closure = []
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/macros",
|
|
"crates/cli"
|
|
]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docs"]
|