nac3_sca/nac3artiq/Cargo.toml

26 lines
577 B
TOML
Raw Normal View History

2020-12-18 10:09:35 +08:00
[package]
name = "nac3artiq"
2020-12-18 10:09:35 +08:00
version = "0.1.0"
authors = ["M-Labs"]
edition = "2018"
[lib]
name = "nac3artiq"
2020-12-18 10:09:35 +08:00
crate-type = ["cdylib"]
2020-12-19 00:52:06 +08:00
[dependencies]
2022-08-05 16:58:30 +08:00
pyo3 = { version = "0.16", features = ["extension-module"] }
parking_lot = "0.12"
tempfile = "3"
2021-11-03 17:11:00 +08:00
nac3parser = { path = "../nac3parser" }
2020-12-19 16:23:12 +08:00
nac3core = { path = "../nac3core" }
nac3ld = { path = "../nac3ld" }
[dependencies.inkwell]
git = "https://github.com/TheDan64/inkwell.git"
default-features = false
2022-04-18 18:47:20 +08:00
features = ["llvm14-0", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]
2021-12-26 21:11:14 +08:00
[features]
init-llvm-profile = []