pyo3/examples/maturin-starter/Cargo.toml
2021-12-15 08:11:46 +00:00

19 lines
325 B
TOML

[package]
authors = ["PyO3 Authors"]
name = "maturin-starter"
version = "0.1.0"
description = "An example project to get started using PyO3 with maturin"
edition = "2018"
[dependencies]
[dependencies.pyo3]
path = "../../"
features = ["extension-module"]
[workspace]
[lib]
name = "maturin_starter"
crate-type = ["cdylib"]