- Core API: bind/unbind accept id (integer PK) when face_id is null - Tauri proxy: stream video responses instead of buffering for seek bar - VideoPlayer: remove muted attribute, unmute by default - LibraryView: call invalidateFiles() before ensureFiles() on register/unregister - PeopleView: close sort panel on click-outside, not just hamburger toggle - bind_face: prefer face_id, fallback to id when face_id is null
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[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"
|
|
default-run = "momentry-studio"
|
|
|
|
[[bin]]
|
|
name = "momentry-studio"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "momentry-proxy"
|
|
path = "src/bin/proxy.rs"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-shell = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "postgres", "json"] }
|
|
reqwest = { version = "0.11", features = ["json", "stream", "multipart"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
base64 = "0.22"
|
|
lru = "0.12"
|
|
futures = "0.3"
|
|
image = { version = "0.24", default-features = false, features = ["jpeg"] }
|
|
axum = "0.7"
|
|
tower-http = { version = "0.5", features = ["cors", "fs"] }
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|