ext-php-rs/Cargo.toml
Will Browning cea3cb2dc4
Updated Bindgen to 0.58.1 (#20)
* Update bindgen

* Fix failing test

* Add env llvm and libclang variables

* Fixed doc comment for table macros

* Removed newline

Co-authored-by: David Cole <david.cole1340@gmail.com>
2021-04-17 00:05:17 +12:00

22 lines
641 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"
keywords = ["php", "ffi", "zend"]
version = "0.0.3"
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.3", path = "./ext-php-rs-derive" }
[build-dependencies]
bindgen = { version = ">= 0.57.0, < 0.58.1", default-features = false }
regex = "1"
cc = "1.0.67"