-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 816 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
30
31
[package]
name = "ocrs"
version = "0.11.0"
edition = "2021"
authors = ["Robert Knight"]
description = "OCR engine"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/robertknight/ocrs"
repository = "https://github.com/robertknight/ocrs"
[dependencies]
anyhow = "1.0.100"
rayon = "1.11.0"
rten = { workspace = true }
rten-imageproc = { workspace = true }
rten-tensor = { workspace = true }
thiserror = "2.0.17"
[target.'cfg(target_arch = "wasm32")'.dependencies]
# nb. When changing this, make sure the version of wasm-bindgen-cli installed
# in CI etc. is in sync.
wasm-bindgen = "0.2.93"
[dev-dependencies]
fastrand = "2.3.0"
image = { version = "0.25.9", default-features = false, features = ["png", "jpeg", "webp"] }
lexopt = "0.3.1"
rten = { workspace = true }
[lib]
crate-type = ["lib", "cdylib"]