ext-php-rs/Cargo.toml
David 0db6888c46
Added support for PHP ZTS (#37)
* Added support for PHP ZTS

* Added GitHub action for ZTS

Runs seperate from the other tests, as the setup-php action does not
support ZTS, therefore we run the tests in a Docker container.

* Source Rust env file before building

* No `source` command on docker

* Another attempt at fixing Rust in Docker
2021-05-19 20:45:39 +12:00

25 lines
650 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.0.6"
authors = ["David Cole <david.cole1340@gmail.com>"]
edition = "2018"
categories = ["api-bindings"]
[dependencies]
libc = "0.2.88"
bitflags = "1.2.1"
ext-php-rs-derive = { version = "=0.0.6", path = "./ext-php-rs-derive" }
[build-dependencies]
bindgen = { version = ">= 0.57.0, < 0.58.1" }
regex = "1"
cc = "1.0.67"
[features]
zts = []