leanshot/Cargo.toml

26 lines
537 B
TOML

[package]
name = "leanshot"
description = "Screenshot capture for Linux."
version = "0.4.0"
repository = "https://git.sr.ht/~iptq/leanshot"
license-file = "LICENSE"
edition = "2018"
authors = ["Michael Zhang <iptq@protonmail.com>"]
[workspace]
members = [".", "x11"]
[features]
default = ["x11"]
x11 = ["leanshot_x11"]
[dependencies]
png = "0.14"
structopt = "0.2"
anyhow = "1.0.31"
image = "0.23.5"
log = "0.4.8"
stderrlog = "0.4.3"
leanshot_x11 = { version = "0.2", path = "x11", optional = true, features = ["xlib", "xinerama"] }