-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.37 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
[workspace]
resolver = "2"
members = [
"crates/entities",
"crates/parser",
"crates/processors",
"crates/output",
"crates/hybrid",
"crates/tagging",
"crates/cli",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/00EVA/ODL-PDF-RUST"
homepage = "https://github.com/00EVA/ODL-PDF-RUST"
rust-version = "1.80"
keywords = ["pdf", "markdown", "extraction", "parsing", "document"]
categories = ["text-processing", "parsing"]
# Inter-crate deps carry BOTH a path (for in-workspace builds) and a version
# (required by crates.io — a path-only dependency cannot be published).
[workspace.dependencies]
odl-entities = { path = "crates/entities", version = "0.1.0" }
odl-parser = { path = "crates/parser", version = "0.1.0" }
odl-processors = { path = "crates/processors", version = "0.1.0" }
odl-output = { path = "crates/output", version = "0.1.0" }
odl-hybrid = { path = "crates/hybrid", version = "0.1.0" }
pdfium-render = { version = "0.8", default-features = false, features = ["thread_safe", "pdfium_6996", "image"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
lopdf = "0.34"
[workspace.lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = "thin"