Initial commit: Momentry Studio v0.1.0

This commit is contained in:
2026-06-13 17:49:02 +08:00
commit 79e0a862d4
14019 changed files with 1129062 additions and 0 deletions

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

@@ -0,0 +1,24 @@
[package]
name = "momentry-studio"
version = "0.1.0"
description = "Momentry Studio - Video Analysis Platform"
authors = ["Momentry"]
license = "MIT"
repository = ""
edition = "2021"
rust-version = "1.77.2"
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "json"] }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
[build-dependencies]
tauri-build = { version = "2", features = [] }
[features]
custom-protocol = ["tauri/custom-protocol"]