subtitle-merge/src-tauri/Cargo.toml

30 lines
909 B
TOML

[package]
name = "subtitle-merge"
version = "0.1.0"
description = "A Tauri app for merging videos with subtitles"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.70"
[build-dependencies]
tauri-build = { version = "2.0.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.0.0", features = [] }
tokio = { version = "1.36", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-dialog = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
tauri-plugin-fs = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
[features]
custom-protocol = ["tauri/custom-protocol"]
[lib]
name = "subtitle_merge_lib"
crate-type = ["staticlib", "cdylib", "rlib"]