-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (50 loc) · 1.42 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
[workspace]
members = ["xtask/codegen"]
default-members = ["."]
resolver = "3"
[package]
name = "paperdown"
version = "0.3.0"
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 = []
schemars = ["dep:schemars"]
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
futures = "0.3"
indicatif = "0.17"
etcetera = "0.11"
dotenvy = "0.15"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
serde = { version = "1", features = ["derive"] }
schemars = { version = "1", optional = true }
serde_json = "1"
toml = "1.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"
jsonschema = { version = "0.33", default-features = false }