[package] name = "gifski-win" version = "1.14.1" description = "GUI for gif.ski (high-quality GIF maker)" authors = ["Kornel LesiƄski"] license = "AGPL-3.0-or-later" keywords = ["GIF", "animator", "maker", "GUI", "windows"] repository = "https://github.com/ImageOptim/gifski" edition = "2021" categories = ["multimedia::video", "gui"] homepage = "https://gif.ski" rust-version = "1.71" include = ["icons/*", "html/*", "html/assets/*", "Cargo.toml", "build.rs", "README.md", "tauri.conf.json", "src/*.rs"] [build-dependencies] tauri-build = "=2.0.0-alpha.4" [dependencies] tauri-utils = "=2.0.0-alpha.4" tauri-codegen = "=2.0.0-alpha.4" tauri-runtime = "=0.13.0-alpha.4" tauri-runtime-wry = "=0.13.0-alpha.4" tauri-macros = "=2.0.0-alpha.4" serde_json = "1.0.96" serde = { version = "1.0.160", features = ["derive"] } tauri = { version = "2.0.0-alpha.8", features = ["api-all", "dialog", "updater"] } gifski = { version = "1.14.1", default-features = false, features = ["png", "gifsicle"] } once_cell = "1.17.1" natord = "1.0.9" tokio = { version = "1.28.0", default-features = false, features = ["sync"] } [features] # by default Tauri runs in production mode # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL default = ["custom-protocol"] # this feature is used used for production builds where `devPath` points to the filesystem # DO NOT remove this custom-protocol = ["tauri/custom-protocol"] [profile.dev.package] lodepng = { opt-level = 2 } gifski = { opt-level = 2 } # [patch.crates-io] # tauri = { path = "../tauri/core/tauri" } # gifski = { path = "../../gifski" }