22 lines
438 B
TOML
22 lines
438 B
TOML
[package]
|
|
name = "nac3artiq"
|
|
version = "0.1.0"
|
|
authors = ["M-Labs"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "nac3artiq"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
itertools = "0.13"
|
|
pyo3 = { version = "0.21", features = ["extension-module", "gil-refs"] }
|
|
parking_lot = "0.12"
|
|
tempfile = "3.10"
|
|
nac3core = { path = "../nac3core" }
|
|
nac3ld = { path = "../nac3ld" }
|
|
|
|
[features]
|
|
init-llvm-profile = []
|
|
no-escape-analysis = ["nac3core/no-escape-analysis"]
|