Initial Programm

This commit is contained in:
Joey Pillunat-Klebb | OH5 2025-11-03 15:36:43 +01:00
commit 748128d4d9
17 changed files with 7059 additions and 0 deletions

22
src-tauri/Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "OH5_QR_Code_Generator"
version = "0.1.0"
description = "OH5 QR Code Generator"
authors = ["jpk aka Shiro"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
qrcode = { version = "0.14", features = ["image"] }
image = "0.25"
urlencoding = "2.1"
base64 = "0.22"