Cargo.toml

454 B · toml · 20 lines

1[package]2name = "mrlypy"3version = "0.2.0"4edition.workspace = true5license.workspace = true6repository.workspace = true7description = "The Python bridge of MrlyMath."8publish = false910[lib]11name = "_mrlypy"12crate-type = ["cdylib"]1314[dependencies]15mrlyrs = { workspace = true }16pyo3 = { version = "0.29", features = ["extension-module", "abi3-py313"] }17numpy = "0.29"18pythonize = "0.29"19serde = { version = "1", features = ["derive"] }20serde_json = "1"