Add maturin build config for the litellm_rust extension

This commit is contained in:
Ishaan Jaffer 2026-06-16 20:47:26 -07:00
parent 68301db156
commit c0e486420e
No known key found for this signature in database

View file

@ -0,0 +1,13 @@
[build-system]
requires = ["maturin>=1.5"]
build-backend = "maturin"
[project]
name = "litellm_rust"
version = "0.1.0"
requires-python = ">=3.8"
description = "Rust port of LiteLLM's Mistral OCR transforms (PyO3 extension)."
[tool.maturin]
features = ["python"]
module-name = "litellm_rust"