mirror of
https://github.com/icicle-emu/icicle-python
synced 2026-06-21 13:53:41 +00:00
25 lines
659 B
TOML
25 lines
659 B
TOML
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[package]
|
|
name = "icicle-python"
|
|
version = "0.0.2"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "icicle"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
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 = "1.9.3"
|
|
pyo3 = { version = "0.19.2", features = ["extension-module", "indexmap", "abi3-py37"] }
|
|
target-lexicon = "0.12.7"
|
|
tracing = "*"
|
|
tracing-subscriber = "0.3.17"
|
|
|
|
[build-dependencies]
|
|
pyo3-build-config = "0.19.2"
|