forked from bbqsrc/pdf-strings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 776 Bytes
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
[workspace]
members = [".", "cli", "ffi"]
resolver = "3"
[package]
name = "pdf-strings"
version = "0.1.0"
description = "Parse structured spans of strings from PDF files"
repository = "https://github.com/bbqsrc/pdf-strings"
documentation = "https://docs.rs/crate/pdf-strings/"
authors = [
"Jeff Muizelaar <jmuizelaar@mozilla.com>",
"Brendan Molloy <brendan@bbqsrc.net>",
]
keywords = ["pdf", "text-extraction", "font", "cmap", "unicode"]
license = "MIT"
edition = "2024"
[profile.release]
debug = true
[dependencies]
adobe-cmap-parser = "0.4.1"
encoding_rs = "0.8.34"
euclid = "0.22.11"
lopdf = {version = "0.38", default-features = false}
type1-encoding-parser = "0.1.0"
unicode-normalization = "0.1.19"
cff-parser = "0.1.0"
ttf-parser = "0.25"
tracing = "0.1.41"