1
0
mirror of https://github.com/jdiaz97/pdfx.git synced 2025-10-06 05:37:02 +02:00

changes to cargo.toml

This commit is contained in:
José Díaz
2025-06-29 23:58:57 +02:00
parent ad334c1538
commit 261a426f23
2 changed files with 479 additions and 183 deletions

642
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,9 +4,17 @@ version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
pdf-extract = "0.7"
clap = "4.5.39"
anyhow = "1.0.98"
serde_json = "1.0.140"
reqwest = { version = "0.12.20", features = ["json"] }
tokio = { version = "1.45.1", features = ["full"] }
pdf-extract = "0.9"
clap = "4.5.40"
[profile.release]
opt-level = 3
lto = "fat" # Full Link-Time Optimization (very slow compile, very fast binary)
codegen-units = 1 # Forces single-threaded codegen to enable more cross-function optimization
panic = "abort" # Remove panic overhead; reduces binary size, but no backtraces or unwinding
incremental = false # Avoids caching between builds for slightly better final optimization
strip = "symbols" # Strip debug symbols (can be "none", "debuginfo", or "symbols")