forked from M-Labs/nac3
1
0
Fork 0
nac3/nac3artiq/Cargo.toml

22 lines
438 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"]
2023-09-15 10:25:50 +08:00
edition = "2021"
2020-12-18 10:09:35 +08:00
[lib]
name = "nac3artiq"
2020-12-18 10:09:35 +08:00
crate-type = ["cdylib"]
2020-12-19 00:52:06 +08:00
[dependencies]
2024-05-27 12:53:50 +08:00
itertools = "0.13"
pyo3 = { version = "0.21", features = ["extension-module", "gil-refs"] }
2022-08-05 16:58:30 +08:00
parking_lot = "0.12"
2024-10-03 12:43:27 +08:00
tempfile = "3.13"
2020-12-19 16:23:12 +08:00
nac3core = { path = "../nac3core" }
nac3ld = { path = "../nac3ld" }
2021-12-26 21:11:14 +08:00
[features]
init-llvm-profile = []
no-escape-analysis = ["nac3core/no-escape-analysis"]