-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (52 loc) · 1.39 KB
/
Cargo.toml
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
[package]
name = "mrdocument"
version = "0.4.0"
authors = ["Ole Kliemann <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Automatic PDF transcription and classification via OpenAI"
repository = "https://github.com/olekli/mrdocument"
readme = "README.md"
[dependencies]
base64 = "0.22.1"
clap = { version = "4.5.21", features = ["derive"] }
dirs = "5.0.1"
display_json = "0.2.1"
env_logger = "0.11.5"
filetime = "0.2.25"
fmt = "0.1.0"
futures = "0.3.31"
futures-util = "0.3.31"
log = "0.4.22"
lopdf = { version = "0.34.0", features = ["async", "tokio"] }
notify = "7.0.0"
once_cell = "1.20.2"
openai-api-rs = "5.2.2"
schemars = "0.8.21"
serde = "1.0.215"
serde_json = "1.0.133"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
tempdir = "0.3.7"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["full", "macros", "sync"] }
tokio-stream = { version = "0.1.16", features = ["io-util", "signal", "time"] }
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
which = "7.0.0"
[lib]
name = "mrdocument"
path = "src/lib.rs"
[[bin]]
name = "mrdocument"
path = "src/bin.rs"
[[bin]]
name = "mrdocument-install"
path = "src/install.rs"
[[bin]]
name = "mrdocument-watcher-example"
path = "src/watcher_example.rs"
[dev-dependencies]
async-std = { version = "1.13.0", features = ["attributes"] }
rstest = "0.23.0"