2020-12-18 10:09:35 +08:00
|
|
|
[package]
|
2021-09-27 10:30:54 +08:00
|
|
|
name = "nac3artiq"
|
2020-12-18 10:09:35 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
2021-09-27 10:30:54 +08:00
|
|
|
name = "nac3artiq"
|
2020-12-18 10:09:35 +08:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2020-12-19 00:52:06 +08:00
|
|
|
[dependencies]
|
2021-09-23 19:30:03 +08:00
|
|
|
pyo3 = { version = "0.14", features = ["extension-module"] }
|
2021-09-22 17:19:27 +08:00
|
|
|
rustpython-parser = { git = "https://github.com/m-labs/RustPython", branch = "parser-mod" }
|
2021-11-02 14:00:20 +08:00
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm12-0"] }
|
2021-09-23 19:30:03 +08:00
|
|
|
parking_lot = "0.11"
|
2020-12-19 16:23:12 +08:00
|
|
|
nac3core = { path = "../nac3core" }
|