-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.41 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
[workspace]
members = [
"apps/datasheet-cli",
"crates/datasheet-compiler",
"crates/datasheet-core",
"crates/datasheet-model",
"tools/datasheet-train",
]
resolver = "3"
[workspace.package]
version = "0.1.8"
edition = "2024"
rust-version = "1.85"
repository = "https://github.com/akiselev/datasheet-cli"
authors = ["Alexander Kiselev <alex@akiselev.com>"]
[workspace.dependencies]
anyhow = "1.0.100"
base64 = "0.22.1"
clap = { version = "4.5.54", features = ["derive", "env"] }
datasheet-compiler = { path = "crates/datasheet-compiler", version = "0.1.8" }
datasheet-core = { path = "crates/datasheet-core", version = "0.1.8" }
datasheet-model = { path = "crates/datasheet-model", version = "0.1.8" }
image = "0.25"
lopdf = { version = "0.39", default-features = false }
mupdf = "0.7"
quantitas = { version = "0.1.0", git = "https://github.com/akiselev/quantitas.git", rev = "734d78cd6ff516afee54201bc70cd59fd34e67e3" }
reqwest = { version = "0.12.23", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
] }
roxmltree = "0.20"
rpassword = "5.0"
schemars = "0.8.22"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sha2 = "0.10"
ureq = { version = "2.10", features = ["json"] }
urlencoding = "2.1"
zip = { version = "2.0", default-features = false, features = ["deflate"] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"