nac3_sca/nac3standalone/Cargo.toml

16 lines
389 B
TOML
Raw Normal View History

2020-12-17 22:20:30 +08:00
[package]
name = "nac3standalone"
version = "0.1.0"
authors = ["M-Labs"]
edition = "2018"
[dependencies]
2022-08-05 16:58:30 +08:00
parking_lot = "0.12"
2021-11-03 17:11:00 +08:00
nac3parser = { path = "../nac3parser" }
2020-12-18 10:18:21 +08:00
nac3core = { path = "../nac3core" }
[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"]