18 lines
539 B
TOML
18 lines
539 B
TOML
[package]
|
|
name = "qr-gui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
qr-core = { path = "../core" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
eframe = { version = "0.31", default-features = false, features = ["default_fonts"] }
|
|
egui = { version = "0.31" }
|
|
egui_extras = { version = "0.31", features = ["image"] }
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
rfd = "0.15"
|