This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
RustedIronRing/bindings/python/Cargo.toml
dece 8cfe445d68 python: use PyO3 for Python bindings
Not sure it's the best way but it's way simpler to maintain than plain
Rust FFI.
2020-05-12 18:45:43 +02:00

14 lines
271 B
TOML

[package]
name = "pyironring"
version = "0.1.0"
authors = ["dece <shgck@pistache.land>"]
edition = "2018"
[lib]
name = "pyironring"
crate-type = ["cdylib"]
[dependencies]
rusted_iron_ring = { path = "../.." }
pyo3 = { version = "0.9", features = ["extension-module"] }