-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.19 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
[package]
name = "paperdown"
version = "0.2.0-dev"
authors = ["Anatoly Tsyplenkov <atsyplenkov@fastmail.com>"]
edition = "2024"
description = "A fast CLI tool to batch convert PDFs into Markdown using GLM-OCR."
license = "MIT"
readme = "README.md"
repository = "https://github.com/atsyplenkov/paperdown"
homepage = "https://github.com/atsyplenkov/paperdown"
documentation = "https://docs.rs/paperdown"
keywords = ["ocr", "pdf", "markdown", "cli"]
categories = ["command-line-utilities", "text-processing"]
[[bin]]
name = "paperdown"
path = "src/main.rs"
[profile.release]
opt-level = "z"
strip = "symbols"
[features]
default = []
net-tests = []
internal-testing = []
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
futures = "0.3"
indicatif = "0.17"
dotenvy = "0.15"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "fs", "sync"] }
url = "2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
httpmock = "0.7"