From c0e486420e53c43b229832bc9230255ed24821f5 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Tue, 16 Jun 2026 20:47:26 -0700 Subject: [PATCH] Add maturin build config for the litellm_rust extension --- litellm-rust/pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 litellm-rust/pyproject.toml diff --git a/litellm-rust/pyproject.toml b/litellm-rust/pyproject.toml new file mode 100644 index 00000000000..dfcee522170 --- /dev/null +++ b/litellm-rust/pyproject.toml @@ -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"