36 lines
1 KiB
TOML
36 lines
1 KiB
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"
|
|
futures-util = "0.3"
|
|
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" }
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
base64 = "0.21"
|
|
image = "0.24"
|
|
tempfile = "3.9"
|
|
tauri-plugin-store = "2"
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
[lib]
|
|
name = "subtitle_merge_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|