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-04-22 10:01:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-04-02 07:15:12 +02:00
|
|
|
keywords = ["php", "ffi", "zend"]
|
2021-04-24 03:39:06 +02:00
|
|
|
version = "0.0.5"
|
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
|
|
|
|
|
|
|
[dependencies]
|
2021-04-02 03:18:45 +02:00
|
|
|
libc = "0.2.88"
|
|
|
|
bitflags = "1.2.1"
|
2021-04-24 03:39:06 +02:00
|
|
|
ext-php-rs-derive = { version = "=0.0.5", path = "./ext-php-rs-derive" }
|
2021-03-09 00:40:12 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-05-07 00:35:46 +02:00
|
|
|
bindgen = { version = ">= 0.57.0, < 0.58.1" }
|
2021-03-11 00:34:47 +01:00
|
|
|
regex = "1"
|
2021-04-02 03:18:45 +02:00
|
|
|
cc = "1.0.67"
|