-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (53 loc) · 1.83 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "dev-widgets"
version = "0.2.0"
edition = "2021"
description = "Dev Widgets"
readme = "README.md"
build = "build.rs"
[build-dependencies]
curl = "0.4"
grass = "0.13"
zip-extract = "0.2"
[dependencies]
base64ct = { version = "1.6", features = ["alloc"] }
cidr = "0.3.0"
digest = "0.10"
dioxus-free-icons = { version = "0.8", features = ["bootstrap"] }
dioxus-router = "0.5.6"
md-5 = "0.10"
num-traits = "0.2"
qrcode-generator = "5.0.0"
sha1 = "0.10"
sha2 = "0.10"
strum = "0.26"
strum_macros = "0.26"
uuid = { version = "1.11", features = ["v4", "fast-rng"] }
time-tz = { version = "2.0", features = ["db", "system"] }
log = { version = "0.4", features = ["std"] }
color_processing = "0.6"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
dioxus = {version = "0.5.6", features = ["desktop"]}
getrandom = "0.2"
time = "0.3"
[target.'cfg(target_family = "wasm")'.dependencies]
dioxus = {version = "0.5.1", features = ["web"]}
getrandom = { version = "0.2", features = ["js"] }
time = { version = "0.3", features = ["wasm-bindgen"] }
wasm-bindgen = { version = "0.2.92", features = ["enable-interning"] }
wasm-logger = "0.2.0"
[profile.release]
lto = true # Use Link-Time-Optimization
codegen-units = 1 # Fewer codegen units to increase optimizations.
panic = "abort" # Aborting strips the stack unwind code from the binary.
[target.'cfg(not(any(target_os = "windows", target_os = "none")))'.profile.release]
strip = true # Automatically strip symbols from the binary. Only available for *nix targets.
[package.metadata.bundle]
name = "Dev Widgets"
identifier = "com.esimkowitz.devwidgets"
version = "0.2.0"
resources = ["public/**/*"]
copyright = "Copyright (c) Evan Simkowitz 2024. All rights reserved."
category = "Developer Tool"
short_description = "A set of helpful widgets written in Rust."
osx_url_schemes = ["com.esimkowitz.devwidgets"]