2021-08-16 22:40:13 +00:00
|
|
|
[package]
|
|
|
|
name = "ppc750cl-py"
|
2022-04-07 03:45:01 +00:00
|
|
|
version = "0.2.0"
|
2022-04-06 13:13:55 +00:00
|
|
|
edition = "2021"
|
2021-08-16 22:40:13 +00: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 23:21:26 +00:00
|
|
|
[features]
|
|
|
|
extension-module = ["pyo3/extension-module"]
|
|
|
|
default = ["extension-module"]
|
|
|
|
|
2021-08-16 22:40:13 +00:00
|
|
|
[dependencies]
|
2022-04-07 03:42:55 +00:00
|
|
|
pyo3 = { version = "0.16", features = ["multiple-pymethods"] }
|
2022-04-07 03:45:01 +00:00
|
|
|
ppc750cl = { version = "0.2.0", path = "../disasm" }
|