nac3/nac3core/Cargo.toml

27 lines
492 B
TOML
Raw Normal View History

2020-12-17 22:20:30 +08:00
[package]
2020-12-18 10:18:21 +08:00
name = "nac3core"
2020-12-17 22:20:30 +08:00
version = "0.1.0"
authors = ["M-Labs"]
2023-09-15 10:25:50 +08:00
edition = "2021"
2020-12-17 22:20:30 +08:00
[dependencies]
2023-09-01 16:56:32 +08:00
itertools = "0.11"
2022-08-05 16:58:30 +08:00
crossbeam = "0.8"
parking_lot = "0.12"
rayon = "1.5"
2021-11-03 17:11:00 +08:00
nac3parser = { path = "../nac3parser" }
2022-08-05 16:58:30 +08:00
lazy_static = "1.4"
2021-06-28 10:49:41 +08:00
[dependencies.inkwell]
2023-09-01 16:56:32 +08:00
version = "0.2"
default-features = false
2022-04-18 18:47:20 +08:00
features = ["llvm14-0", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]
2021-07-15 16:00:23 +08:00
[dev-dependencies]
test-case = "1.2.0"
2023-09-01 16:56:32 +08:00
indoc = "2.0"
2022-01-31 15:18:49 +08:00
insta = "=1.11.0"
[build-dependencies]
regex = "1"