33 lines
876 B
TOML
33 lines
876 B
TOML
[package]
|
|
name = "mixvideo-v2"
|
|
version = "2.0.0"
|
|
description = "MixVideo V2 - Professional video editing software"
|
|
authors = ["MixVideo Team"]
|
|
license = "MIT"
|
|
repository = "https://github.com/mixvideo/mixvideo-v2"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.3.0", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.6.2", features = ["protocol-asset"] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-shell = "2"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
base64 = "0.21"
|
|
anyhow = "1.0"
|