feat: scaffold Tauri v2 + Vite + TypeScript project

This commit is contained in:
Your Name
2026-02-19 01:23:27 +02:00
parent 47d4409bcc
commit 24746bb33d
12 changed files with 164 additions and 0 deletions

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

@@ -0,0 +1,29 @@
[package]
name = "tutorialdock"
version = "0.1.0"
description = "TutorialDock - Video Tutorial Library Manager"
authors = []
edition = "2021"
[lib]
name = "tutorialdock_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["protocol-asset"] }
tauri-plugin-dialog = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["stream"] }
zip = "2"
which = "7"
regex = "1"
once_cell = "1"
[dev-dependencies]
tempfile = "3"