2020-12-18 10:09:35 +08:00
|
|
|
[package]
|
2021-09-27 10:30:54 +08:00
|
|
|
name = "nac3artiq"
|
2020-12-18 10:09:35 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
2021-09-27 10:30:54 +08:00
|
|
|
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"
|
2021-11-06 13:03:45 +08:00
|
|
|
tempfile = "3"
|
2021-11-03 17:11:00 +08:00
|
|
|
nac3parser = { path = "../nac3parser" }
|
2020-12-19 16:23:12 +08:00
|
|
|
nac3core = { path = "../nac3core" }
|
2021-12-02 22:24:33 +08:00
|
|
|
|
|
|
|
[dependencies.inkwell]
|
2021-12-25 22:17:06 +08:00
|
|
|
version = "0.1.0-beta.4"
|
2021-12-02 22:24:33 +08:00
|
|
|
default-features = false
|
2021-12-25 22:49:47 +08:00
|
|
|
features = ["llvm13-0", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]
|
2021-12-26 21:11:14 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
init-llvm-profile = []
|