forked from M-Labs/nac3
17 lines
469 B
TOML
17 lines
469 B
TOML
[package]
|
|
name = "nac3embedded"
|
|
version = "0.1.0"
|
|
authors = ["M-Labs"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "nac3embedded"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.14", features = ["extension-module"] }
|
|
rustpython-parser = { git = "https://github.com/m-labs/RustPython", branch = "parser-mod" }
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm11-0"] }
|
|
parking_lot = "0.11"
|
|
nac3core = { path = "../nac3core" }
|