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"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
num-bigint = "0.3"
|
|
|
|
num-traits = "0.2"
|
2021-08-19 11:14:35 +08:00
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm11-0"] }
|
2021-09-22 17:19:27 +08:00
|
|
|
rustpython-parser = { git = "https://github.com/m-labs/RustPython", branch = "parser-mod" }
|
2021-07-19 13:35:01 +08:00
|
|
|
itertools = "0.10.1"
|
2021-08-03 12:38:55 +08:00
|
|
|
crossbeam = "0.8.1"
|
2021-08-03 14:11:41 +08:00
|
|
|
parking_lot = "0.11.1"
|
2021-08-05 14:53:47 +08:00
|
|
|
rayon = "1.5.1"
|
2021-06-28 10:49:41 +08:00
|
|
|
|
2021-07-15 16:00:23 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
test-case = "1.2.0"
|
2021-07-21 13:28:05 +08:00
|
|
|
indoc = "1.0"
|
2021-10-03 16:39:12 +08:00
|
|
|
insta = "1.5"
|