imagey/Cargo.toml
electria 6b4af8cd7d
refactor: use iced 0.15 rich clipboard
it does use arboard internally,
and yet somehow it's able to copy huge (25MB) images.

either way, it's nicer to use stuff built into iced
instead of dealing with the Clipboard object ourselves.
2026-08-28 12:28:45 -07:00

29 lines
535 B
TOML

[package]
name = "imagey"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-or-later"
[dependencies]
dirs = "6.0.0"
misc-image-integration = "0.1.0"
resvg = "0.48.1"
rfd = "0.17.2"
size = "0.5.0"
zip = "8.6.0"
[dependencies.iced]
version = "0.15.0-dev"
features = [ "image" ]
[dependencies.image]
version = "0.25.10"
features = [ "avif-native" ]
[dependencies.jxl-oxide]
version = "0.12.6"
# I really wish the image crate was named better
features = [ "image" ]
[patch.crates-io]
iced.git = "https://github.com/iced-rs/iced"