Files
pixelpwnr/Cargo.toml
2025-12-26 23:26:56 +01:00

38 lines
796 B
TOML

[package]
name = "pixelpwnr"
version = "0.1.0"
edition = "2021"
authors = ["Tim Visée <timvisee@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://timvisee.com/projects/pixelpwnr"
repository = "https://github.com/timvisee/pixelpwnr"
description = "Insanely fast pixelflut client for images and animations"
keywords = ["pixelflut", "pixelpwnr"]
categories = [
"command-line-utilities",
]
[dependencies]
bufstream = "0.1"
clap = { version = "4.4", features = [ "derive" ] }
eframe = "0.26"
glob = "0.3"
image = "0.23"
num_cpus = "1.13.1"
regex = "1.5"
rayon = "1.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[[bin]]
name = "pixelpwnr"
path = "src/main.rs"
[[bin]]
name = "pixelpwnr-gui"
path = "src/gui.rs"
[profile.release]
lto = true