leanshot/Cargo.toml

26 lines
537 B
TOML
Raw Normal View History

2018-05-13 21:42:19 +00:00
[package]
2018-09-30 12:25:18 +00:00
name = "leanshot"
description = "Screenshot capture for Linux."
2020-06-16 02:25:28 +00:00
version = "0.4.0"
2020-06-27 02:14:32 +00:00
repository = "https://git.sr.ht/~iptq/leanshot"
2018-09-30 12:40:02 +00:00
license-file = "LICENSE"
2020-06-26 18:51:31 +00:00
edition = "2018"
2020-06-27 02:14:32 +00:00
authors = ["Michael Zhang <iptq@protonmail.com>"]
2018-09-10 04:24:43 +00:00
2018-09-11 01:31:25 +00:00
[workspace]
2020-06-26 18:51:31 +00:00
members = [".", "x11"]
[features]
default = ["x11"]
x11 = ["leanshot_x11"]
2018-09-11 01:31:25 +00:00
2018-05-13 21:42:19 +00:00
[dependencies]
2019-01-22 22:22:07 +00:00
png = "0.14"
2018-09-10 06:52:54 +00:00
structopt = "0.2"
2020-06-26 18:51:31 +00:00
anyhow = "1.0.31"
image = "0.23.5"
2020-06-26 19:53:06 +00:00
log = "0.4.8"
stderrlog = "0.4.3"
2020-06-27 02:14:32 +00:00
leanshot_x11 = { version = "0.2", path = "x11", optional = true, features = ["xlib", "xinerama"] }