mirror of
https://github.com/danog/ext-php-rs.git
synced 2025-01-22 21:11:45 +01:00
d9e40ea4d2
* Change describe types to C ABI, check ext-php-rs version Rust doesn't have a stable ABI so the describe function and types are now C ABI compatible, however, the internal types `Cow`, `Vec`, `Option` aren't. Check `ext-php-rs` versions to check compatibility between the CLI and the extension. * CLI requires 0.7.1 * Bump versions * Replace standard library types with ABI-stable replacements * Change option type
22 lines
537 B
TOML
22 lines
537 B
TOML
[package]
|
|
name = "ext-php-rs-derive"
|
|
description = "Derive macros for 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"
|
|
version = "0.7.1"
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0.68", features = ["full", "extra-traits"] }
|
|
darling = "0.12"
|
|
ident_case = "1.0.1"
|
|
quote = "1.0.9"
|
|
proc-macro2 = "1.0.26"
|
|
lazy_static = "1.4.0"
|
|
anyhow = "1.0"
|