-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "parser"
version = "0.1.7"
edition = "2024"
authors = ["Leonard Excoffier"]
license = "MIT"
repository = "https://github.com/excoffierleonard/parser"
description = "A library for extracting text from various file formats including PDF, DOCX, XLSX, PPTX, images via OCR, and more"
readme = "README.md"
keywords = ["parser", "pdf", "docx", "text-extraction", "ocr"]
categories = ["text-processing", "parsing"]
[dependencies]
# Core parsing dependencies
calamine = "0.32.0"
docx-rs = "0.4.19"
infer = "0.19.0"
mime = "0.3.17"
pdf-extract = "0.10.0"
regex = "1.12.3"
tempfile = "3.25.0"
tesseract = "0.15.2"
zip = "7.4.0"
# Web server dependencies
actix-web = "4.12.1"
actix-multipart = "0.7.2"
futures-util = "0.3.31"
rayon = "1.11.0"
serde = { version = "1.0.228", features = ["derive"] }
mime_guess = "2.0.5"
rust-embed = { version = "8.11.0", features = ["interpolate-folder-path"] }
dotenvy = "0.15.7"
env_logger = "0.11.8"
[dev-dependencies]
criterion = "0.8"
num_cpus = "1.17.0"
[lints.clippy]
pedantic = "warn"
[[bench]]
name = "function_parse"
harness = false