2025-12-29 00:11:02 +08:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["maturin>=1.4,<2.0"]
|
|
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
|
|
[project]
|
2025-12-29 11:15:18 +08:00
|
|
|
name = "flakestorm_rust"
|
2025-12-29 00:11:02 +08:00
|
|
|
version = "0.1.0"
|
2025-12-29 11:15:18 +08:00
|
|
|
description = "High-performance Rust extensions for flakestorm"
|
2025-12-29 00:11:02 +08:00
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Rust",
|
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.maturin]
|
|
|
|
|
features = ["pyo3/extension-module"]
|
2025-12-29 11:15:18 +08:00
|
|
|
module-name = "flakestorm_rust"
|