2021-03-09 00:40:12 +01:00
|
|
|
[package]
|
2021-04-02 07:12:30 +02:00
|
|
|
name = "ext-php-rs"
|
2021-03-09 08:56:14 +01:00
|
|
|
description = "Bindings for the Zend API to build PHP extensions natively in Rust."
|
2021-04-02 07:12:30 +02:00
|
|
|
repository = "https://github.com/davidcole1340/ext-php-rs"
|
2021-04-02 07:15:12 +02:00
|
|
|
homepage = "https://github.com/davidcole1340/ext-php-rs"
|
2021-03-09 08:56:14 +01:00
|
|
|
license = "MIT"
|
2021-04-02 07:15:12 +02:00
|
|
|
keywords = ["php", "ffi", "zend"]
|
|
|
|
version = "0.0.1"
|
2021-03-09 00:40:12 +01:00
|
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-04-02 07:15:12 +02:00
|
|
|
categories = ["api-bindings"]
|
2021-03-09 00:40:12 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-02 03:18:45 +02:00
|
|
|
libc = "0.2.88"
|
|
|
|
bitflags = "1.2.1"
|
|
|
|
paste = "1.0"
|
2021-03-09 00:40:12 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
bindgen = "0.53.1"
|
2021-03-11 00:34:47 +01:00
|
|
|
regex = "1"
|
2021-04-02 03:18:45 +02:00
|
|
|
cc = "1.0.67"
|