first commit

This commit is contained in:
Nicola Spadari
2024-06-16 01:35:44 +02:00
commit 93877e5f1f
39 changed files with 16397 additions and 0 deletions

19
src-tauri/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "nuxtor"
version = "1.0.0"
description = "Starter template for Nuxt 3 with Tauri"
authors = ["NicolaSpadari"]
license = "MIT"
repository = "https://github.com/NicolaSpadari/nuxtor"
edition = "2021"
[build-dependencies]
tauri-build = { version = "1", features = [] }
[dependencies]
tauri = { version = "1", features = ["notification-all", "shell-all", "system-tray"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[features]
custom-protocol = [ "tauri/custom-protocol" ]