mirror of
https://github.com/icicle-emu/icicle-python
synced 2026-06-21 13:53:41 +00:00
27 lines
582 B
TOML
27 lines
582 B
TOML
[package]
|
|
name = "icicle-python"
|
|
edition = "2021"
|
|
rust-version = "1.90.0"
|
|
|
|
[lib]
|
|
name = "icicle"
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[[bin]]
|
|
name = "tests"
|
|
path = "tests.rs"
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.27.1", features = ["indexmap", "abi3-py38"] }
|
|
icicle-cpu = { path = "icicle-emu/icicle-cpu" }
|
|
icicle-vm = { path = "icicle-emu/icicle-vm" }
|
|
pcode = { path = "icicle-emu/sleigh/pcode" }
|
|
sleigh-runtime = { path = "icicle-emu/sleigh/sleigh-runtime" }
|
|
indexmap = "*"
|
|
target-lexicon = "*"
|
|
tracing = "*"
|
|
tracing-subscriber = "*"
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = "0.27.1"
|