Rename from TutorialDock to TutorialVault. Remove legacy Python app and scripts. Fix video playback, subtitles, metadata display, window state persistence, and auto-download of ffmpeg/ffprobe on first run. Bundle fonts via npm instead of runtime download.
30 lines
640 B
TOML
30 lines
640 B
TOML
[package]
|
|
name = "tutorialvault"
|
|
version = "0.1.0"
|
|
description = "TutorialVault - Video Tutorial Library Manager"
|
|
authors = []
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "tutorialvault_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
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"
|