David bd84f28054
Added ext-php-rs guide (#52)
* Started work on guide, added types

* Rewrite argument parser to allow referencs

Primarly so that `&str` is a valid parameter type.

* Remove generic `Into<String>` conversion to exception

* Worked on guide, added macros

* Build guide when building docs

* Allow manual trigger of docs build

* `cargo fmt`
2021-08-22 01:00:14 +12:00

21 lines
529 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.1.0"
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"
quote = "1.0.9"
proc-macro2 = "1.0.26"
lazy_static = "1.4.0"
regex = "1.5"
anyhow = "1.0"