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.
29 lines
535 B
TOML
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"
|