This commit is contained in:
entailz 2026-04-09 14:04:52 -07:00
commit 1a50f2bf11
23 changed files with 13058 additions and 0 deletions

41
Cargo.toml Normal file
View file

@ -0,0 +1,41 @@
[workspace]
[package]
name = "blast"
version = "0.1.0"
edition = "2021"
description = "Hyprland screenshot tool"
[[bin]]
name = "blast"
path = "src/main.rs"
[[bin]]
name = "blast-gui"
path = "src/gui/main.rs"
[dependencies]
ab_glyph = "0.2"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wl-clipboard-rs = "0.9.3"
notify-rust = "4"
wayland-client = "0.31"
wayland-protocols-wlr = { version = "0.2", features = ["client"] }
wayland-protocols = { version = "0.31", features = ["client", "staging", "unstable"] }
wayland-scanner = "0.31"
wayland-backend = "0.3"
image = { version = "0.25", features = ["png"] }
png = "0.17"
dirs = "5"
rand = "0.8"
thiserror = "1"
anyhow = "1"
libc = "0.2"
tempfile = "3"
gbm = "0.18"
memmap2 = "0.9"
eframe = { version = "0.29", features = ["wayland"] }
egui = "0.29"
egui_extras = { version = "0.29", features = ["image"] }