-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (28 loc) · 934 Bytes
/
Cargo.toml
File metadata and controls
29 lines (28 loc) · 934 Bytes
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
[package]
name = "macocr"
version = "0.4.7"
authors = ["riddleling <riddle.apple@gmail.com>"]
edition = "2024"
description = "An OCR Tool using Apple's Vision Framework API."
license = "MIT"
readme = "README.md"
keywords = ["apple", "macos", "ocr", "http", "server"]
repository = "https://github.com/riddleling/macocr"
[dependencies]
clap = { version = "4.5.41", features = ["derive"] }
infer = "0.19.0"
objc2 = "0.6.1"
objc2-foundation = "0.3.1"
objc2-vision = "0.3.1"
axum = { version = "0.8.4", features = ["multipart"] }
tokio = { version = "1.47.0", features = ["full"] }
tower-http = { version = "0.6.6", features = ["limit", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version ="0.3.19", features = ["env-filter"] }
uuid = { version = "1.17.0", features = ["v4"] }
serde = { version = "1.0.219", features = ["derive"] }
base64 = "0.22.1"
regex = "1.11.1"
termcolor = "1.4.1"
image = "0.25.8"
core-graphics = "0.25.0"