mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-12-03 10:07:44 +01:00
73526d62b5
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.
15 lines
325 B
TOML
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"]
|