rendering is now performed in a separate thread. this is of little use now but lays the groundwork for adding parallel rendering. i just need to think about data ownership a little harder to make the tile renderer nice.
16 lines
336 B
TOML
16 lines
336 B
TOML
[package]
|
|
name = "mechthild_py"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "mechthild"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.25.0", features = ["extension-module"]}
|
|
numpy = "0.25.0"
|
|
mechthild_core = { path = "../core" }
|