2021-11-20 02:19:02 +01:00
|
|
|
[package]
|
|
|
|
name = "cargo-php"
|
|
|
|
description = "Installs extensions and generates stub files for PHP extensions generated with `ext-php-rs`."
|
|
|
|
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"]
|
2022-08-14 11:34:49 +02:00
|
|
|
version = "0.1.5"
|
2021-11-20 02:19:02 +01:00
|
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
categories = ["api-bindings", "command-line-interface"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-21 05:27:12 +01:00
|
|
|
ext-php-rs = { version = ">=0.7.1", path = "../../" }
|
2021-11-20 02:19:02 +01:00
|
|
|
|
2022-06-14 11:26:11 +02:00
|
|
|
clap = { version = ">=3.2.5", features = ["derive"] }
|
2021-11-20 02:19:02 +01:00
|
|
|
anyhow = "1"
|
2022-06-14 10:45:27 +02:00
|
|
|
dialoguer = "0.10"
|
2021-11-20 02:19:02 +01:00
|
|
|
libloading = "0.7"
|
2021-11-20 02:33:41 +01:00
|
|
|
cargo_metadata = "0.14"
|
2021-11-21 05:27:12 +01:00
|
|
|
semver = "1.0"
|