This commit is contained in:
34
crates/kreuzberg-py/Cargo.toml
generated
Normal file
34
crates/kreuzberg-py/Cargo.toml
generated
Normal file
@@ -0,0 +1,34 @@
|
||||
[package]
|
||||
name = "kreuzberg-py"
|
||||
version = "5.0.0-rc.3"
|
||||
edition = "2024"
|
||||
license = "Elastic-2.0"
|
||||
description = "High-performance document intelligence library"
|
||||
readme = false
|
||||
keywords = ["document", "extraction", "ocr", "pdf", "text"]
|
||||
categories = ["text-processing"]
|
||||
|
||||
# `pyo3-async-runtimes` and `serde_json` are emitted unconditionally above so
|
||||
# the manifest is stable across regens, but for umbrella crates with no
|
||||
# async fns or no JSON-marshalled return types they are genuinely unused.
|
||||
# The conditional `async-trait` / `tokio` / `futures` deps are similarly
|
||||
# flagged when the umbrella has trait-bridge / streaming adapters configured
|
||||
# but no actual async-trait / async callsite in the generated PyO3 shim.
|
||||
[package.metadata.cargo-machete]
|
||||
ignored = ["pyo3-async-runtimes", "serde_json", "async-trait", "tokio"]
|
||||
|
||||
[lib]
|
||||
name = "_kreuzberg"
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[features]
|
||||
extension-module = ["pyo3/extension-module", "pyo3/abi3-py310"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
kreuzberg = { version = "5.0.0-rc.3", path = "../kreuzberg", features = ["full", "pdf", "ocr", "paddle-ocr", "paddle-ocr-types", "layout-detection", "layout-types", "embeddings", "embedding-presets", "chunking", "keywords-yake", "keywords-rake", "language-detection", "html", "tree-sitter", "office", "email", "archives", "stopwords", "auto-rotate", "auto-rotate-types", "tokio-runtime", "api", "mcp", "liter-llm", "quality"] }
|
||||
pyo3 = { version = "0.28" }
|
||||
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tokio = { version = "1", features = ["rt-multi-thread"] }
|
||||
Reference in New Issue
Block a user