15 lines
311 B
TOML
15 lines
311 B
TOML
[package]
|
|
name = "pyargus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "pyargus"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
argus-core = { version = "0.1.0", path = "../argus-core" }
|
|
argus-semantics = { version = "0.1.0", path = "../argus-semantics" }
|
|
derive_more = "0.99.17"
|
|
paste = "1.0.12"
|
|
pyo3 = "0.18.1"
|