-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 904 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
[package]
name = "img2laser"
version = "0.1.0"
authors = ["Kyle Larsen"]
license = "MIT"
edition = "2021"
# Reminder:
# Push to git branch for demo site:
# git subtree push --prefix dist origin gh-pages
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.2"
clap = { version = "4.1.10", features = ["derive"] }
dioxus = { git = "https://github.com/DioxusLabs/dioxus.git" }
dioxus-web = { git = "https://github.com/DioxusLabs/dioxus.git" }
#futures = "0.3.28"
image = "0.24.6"
ndarray = "0.15.6"
nshare = { version = "0.9.0", default-features = false, features = ["image", "ndarray"] }
svg = "0.13.0"
thiserror = "1.0.44"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3