ppc750cl/disasm-py/Cargo.toml

21 lines
523 B
TOML
Raw Permalink Normal View History

2021-08-16 15:40:13 -07:00
[package]
name = "ppc750cl-py"
2022-04-06 20:45:01 -07:00
version = "0.2.0"
edition = "2021"
2021-08-16 15:40:13 -07:00
authors = ["Richard Patel <me@terorie.dev>"]
license = "GPL-3.0-or-later"
description = "Python bindings for PowerPC 750CL Disassembler"
repository = "https://github.com/terorie/ppc750cl"
[lib]
name = "ppc750cl"
crate-type = ["cdylib"]
2021-08-16 16:21:26 -07:00
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
2021-08-16 15:40:13 -07:00
[dependencies]
2022-04-06 20:42:55 -07:00
pyo3 = { version = "0.16", features = ["multiple-pymethods"] }
2022-04-06 20:45:01 -07:00
ppc750cl = { version = "0.2.0", path = "../disasm" }