-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 722 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
[package]
name = "anoto_pdf"
authors = ["Terry McConnell <terry@example.com>"]
version = "0.7.0"
edition = "2024"
default-run = "generator_gui"
[[bin]]
name = "generator_gui"
path = "src/bin/gui.rs"
[[bin]]
name = "generator_cli"
path = "src/main.rs"
[dependencies]
clap = "4.5.53"
ndarray = { version = "0.17.1", features = ["serde"] }
plotters = "0.3.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.145"
oxidize-pdf = "1.6.6"
kornia = "0.1.9"
iced = { version = "0.14.0", features = ["image", "canvas", "svg"] }
iced_aw = { version = "0.13.0", features = ["color_picker", "number_input", "card", "spinner"] }
axum = "0.8.7"
tokio = { version = "1.48.0", features = ["full"] }
image = "0.25.9"