ext-php-rs/example/skel/Cargo.toml
David 73526d62b5
Drop object contents rather than deallocating whole object (#57)
The object memory is automatically deallocated, however, anything that
has been allocated on the heap (strings, vectors etc.) must be
deallocated while we are freeing the object.
2021-09-05 00:53:29 +12:00

15 lines
325 B
TOML

[package]
name = "skel"
version = "0.1.0"
authors = ["David Cole <david.cole1340@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ext-php-rs = { path = "../../", features = ["alloc"] }
[lib]
name = "skel"
crate-type = ["cdylib"]