forked from michael/leanshot
29 lines
639 B
TOML
29 lines
639 B
TOML
[package]
|
|
name = "leanshot"
|
|
description = "Screenshot capture for Linux."
|
|
version = "0.4.0"
|
|
repository = "https://github.com/iptq/leanshot"
|
|
license-file = "LICENSE"
|
|
edition = "2018"
|
|
authors = ["Michael Zhang <failed.down@gmail.com>"]
|
|
|
|
[workspace]
|
|
members = [".", "x11"]
|
|
|
|
[features]
|
|
default = ["x11"]
|
|
x11 = ["leanshot_x11"]
|
|
|
|
[dependencies]
|
|
# gl = "0.11"
|
|
# glutin = "0.19"
|
|
# nanovg = { version = "1.0.2", features = ["gl3"] }
|
|
png = "0.14"
|
|
structopt = "0.2"
|
|
# time = "0.1"
|
|
anyhow = "1.0.31"
|
|
image = "0.23.5"
|
|
|
|
leanshot_x11 = { version = "0.2", path = "x11", optional = true, features = ["xlib", "xinerama"] }
|
|
log = "0.4.8"
|
|
stderrlog = "0.4.3"
|