[package] name = "emulsion" version = "10.0.0" description = "A fast and minimalistic image viewer" repository = "https://github.com/ArturKovacs/emulsion" authors = ["Artur Barnabas "] license = "MIT" readme = "README.md" edition = "2018" build = "build.rs" [package.metadata.bundle] name = "Emulsion" identifier = "io.github.arturkovacs.emulsion" icon = ["resource_dev/emulsion.png"] resources = ["LICENSE.txt"] short_description = "A lightweight and minimalistic image viewer" copyright = "Copyright (c) 2020 The Emulsion Contributors" linux_exec_args = "%f" linux_mime_types = [ "image/jpeg", "image/jpg", "image/pjpeg", "image/png", "image/apng", "image/gif", "image/webp", "image/tiff", "image/bmp", "image/avif", "image/svg+xml", "image/svg", "image/x-png", "image/x-tga", "image/x-targa", "image/x-bmp", "image/x-icon", "image/vnd.microsoft.icon", "image/vnd.radiance", "image/x‑portable‑bitmap", "image/x‑portable‑graymap", "image/x‑portable‑pixmap", "image/x‑portable‑anymap" ] [workspace] members = [ "subcrates/gelatin", ] [profile.dev.package."*"] opt-level = 1 [profile.dev.build-override] opt-level = 1 [profile.release] lto = "thin" [features] default = [] networking = ["ureq"] avif = ["libavif-image"] [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" [dependencies] gelatin = { path = "./subcrates/gelatin", version = "0.9" } ureq = { version = "2.0.2", features = ["json"], optional = true } lazy_static = "1.4.0" directories-next = "2.0.0" open = "3.0.3" sys-info = "0.9.0" error-chain = "0.12.4" backtrace = "0.3.56" serde = { version = "1.0.123", features = ["derive"] } toml = "0.5.8" rand = "0.8.3" lexical-sort = "0.3.1" trash = "2.0.1" clap = { version = "4.0.15" } kamadak-exif = "0.5.3" arboard = { version = "3.1.0", features = ["wayland-data-control"] } resvg = "0.23.0" usvg = "0.23.0" tiny-skia = "0.6" # Using the same version that resvg uses. log = "0.4" env_logger = "0.9" [dependencies.libavif-image] version = "0.9.0" default-features = false features = ["codec-dav1d"] optional = true