nac3/nac3artiq/Cargo.toml

22 lines
487 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]
2021-09-23 19:30:03 +08:00
pyo3 = { version = "0.14", features = ["extension-module"] }
parking_lot = "0.11"
tempfile = "3"
2021-11-03 17:11:00 +08:00
nac3parser = { path = "../nac3parser" }
2020-12-19 16:23:12 +08:00
nac3core = { path = "../nac3core" }
[dependencies.inkwell]
2021-12-25 22:17:06 +08:00
version = "0.1.0-beta.4"
default-features = false
features = ["llvm12-0", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]