-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (51 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
62 lines (51 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
members = [
"nameback-core",
"nameback-cli",
"nameback-gui",
]
resolver = "2"
[workspace.package]
version = "0.8.0"
edition = "2021"
authors = ["Albert Hui"]
license = "MIT"
repository = "https://github.com/h4x0r/nameback"
homepage = "https://github.com/h4x0r/nameback"
[workspace.dependencies]
# Workspace member (for internal dependencies)
nameback-core = { version = "0.8.0", path = "nameback-core" }
# Core dependencies
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.10"
log = "0.4"
walkdir = "2.4"
chrono = "0.4"
infer = "0.16"
rayon = "1.10"
# File format handling
pdf-extract = "0.7"
image = "0.25"
# OCR
tesseract = "0.14"
# CLI
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
# GUI
eframe = "0.29"
egui = "0.29"
rfd = "0.15"
tokio = { version = "1", features = ["rt", "sync", "macros"] }
# HTTP
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
lazy_static = "1.4"
# Platform-specific
libc = "0.2"
which = "6.0"
# Testing
tempfile = "3.8"
# Security enhancements for all release builds
[profile.release]
overflow-checks = true