-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 1.14 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
[package]
name = "wifi-qr"
version = "0.3.1"
description = "A small Windows utiliy to show a QR code for the stored WiFi connections."
authors = ["Amr Bashir <[email protected]>"]
license = "MIT"
edition = "2021"
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
[build-dependencies]
embed-resource = "2.4"
[dependencies]
freya = "0.2"
freya-engine = "0.2"
freya-hooks = "0.2"
dioxus-router = "0.5"
dioxus = "0.5"
winit = { version = "0.30", default-features = false }
image = { version = "0.25", features = ["png"] }
qrcode-generator = "4.1"
window-vibrancy = "0.5"
[patch.crates-io]
freya = { git = "https://github.com/marc2332/freya", rev = "94e7c19f0f162b54f1180d315f54744f9a1993df" }
freya-engine = { git = "https://github.com/marc2332/freya", rev = "94e7c19f0f162b54f1180d315f54744f9a1993df" }
freya-hooks = { git = "https://github.com/marc2332/freya", rev = "94e7c19f0f162b54f1180d315f54744f9a1993df" }