pyo3/examples/rustapi_module/Cargo.toml
Paul Ganssle 078bea4345
Move rustapi_module into examples
This is really a test module, but the Rust convention is to put
something like this under examples/, and when it lands, we can take
advantage of "Project-based Examples for Cargo Projects" - RFC link
at https://github.com/rust-lang/rfcs/pull/2517
2018-08-21 18:33:33 -04:00

16 lines
295 B
TOML

[package]
authors = ["PyO3 Authors"]
name = "rustapi-module"
version = "0.1.0"
description = "A Python wrapper for the Rust API for purposes of testing"
[dependencies]
[dependencies.pyo3]
path = "../../"
# features = ["extension-module"]
[lib]
name = "rustapi_module"
crate-type = ["cdylib"]