46 lines
1.3 KiB
TOML
46 lines
1.3 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]
|
|
dirs = "5"
|
|
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"] }
|
|
# MarkBase Core for Admin/Client GUI
|
|
markbase-core = { path = "../../markbase/markbase-core" }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|