2020-12-18 10:09:35 +08:00
|
|
|
[package]
|
|
|
|
name = "nac3embedded"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "nac3embedded"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2020-12-19 00:52:06 +08:00
|
|
|
[dependencies]
|
|
|
|
pyo3 = { version = "0.12.4", features = ["extension-module"] }
|
2020-12-19 16:23:12 +08:00
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm10-0"] }
|
2020-12-19 00:52:06 +08:00
|
|
|
rustpython-parser = { git = "https://github.com/RustPython/RustPython", branch = "master" }
|
2020-12-19 16:23:12 +08:00
|
|
|
nac3core = { path = "../nac3core" }
|