[package]
edition = "2024"
name = "rustify-stdlib"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Prebuilt Rust routines (PyO3) for Python acceleration"
homepage = "https://github.com/your-org/rustify-ml"
documentation = "https://github.com/your-org/rustify-ml"
readme = "README.md"
license = "MIT"
repository = "https://github.com/your-org/rustify-ml"
[lib]
name = "rustify_stdlib"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bench]]
name = "speed"
path = "benches/speed.rs"
harness = false
[dependencies.pyo3]
version = "0.21"
features = ["extension-module"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]