28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
TOML
|
|
[package]
|
||
|
|
name = "kreuzberg-php"
|
||
|
|
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"]
|
||
|
|
|
||
|
|
# `ahash` and `futures-util` are conditionally included but not directly used in PHP code.
|
||
|
|
[package.metadata.cargo-machete]
|
||
|
|
ignored = ["tokio", "ahash", "async-trait"]
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["cdylib"]
|
||
|
|
|
||
|
|
[features]
|
||
|
|
extension-module = []
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
async-trait = "0.1"
|
||
|
|
ext-php-rs = "0.15"
|
||
|
|
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"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
tokio = { version = "1", features = ["full"] }
|