17 lines
464 B
TOML
17 lines
464 B
TOML
[package]
|
|
name = "mechthild_py"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "mechthild"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = "0.24.0"
|
|
mechthild_core = { path = "../core", features = ["bytemuck"] }
|
|
bytemuck = { version = "1.22.0", features = ["extern_crate_alloc"] }
|