cargo-php 0.1.16

Installs extensions and generates stub files for PHP extensions generated with `ext-php-rs`.
Documentation
1
2
3
4
5
6
7
8
//! This could be a `.cargo/config.toml` file, however, when working in a
//! workspace only the top level config file is read. For development it's
//! easier to make this a build script, even though it does add to the compile
//! time.

fn main() {
    println!("cargo:rustc-link-arg-bins=-rdynamic");
}