forked from 86maid/ddddocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 872 Bytes
/
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
[package]
name = "ddddocr"
version = "0.4.0"
edition = "2021"
[features]
load-dynamic = ["ort/load-dynamic"]
cuda = ["ort/cuda"]
download-binaries = ["ort/download-binaries"]
default = ["download-binaries"]
[dependencies]
ort = { git = "https://github.com/pykeio/ort.git", rev = "0407adb", default-features = false, features = [
"ndarray",
"half",
"copy-dylibs",
] }
ndarray = "0.15.6"
lazy_static = "1.4.0"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
anyhow = "1.0"
image = "0.24.0"
imageproc = "0.23.0"
sha256 = "1.1.3"
actix-web = { version = "4", default-features = false, features = [
"cookies",
"macros",
"compress-gzip",
"compress-brotli",
] }
clap = { version = "4.2.7", features = ["derive"] }
actix-multipart = "0.6.0"
tokio = { version = "1.28.1", features = ["full"] }
futures-util = "0.3.28"
base64 = "0.21.0"