leanshot/Cargo.toml

21 lines
399 B
TOML
Raw Normal View History

2018-05-13 21:42:19 +00:00
[package]
name = "screenshot"
2018-09-10 06:52:54 +00:00
description = "Screenshot capture utility."
version = "0.3.0"
2018-05-13 21:42:19 +00:00
authors = ["Michael Zhang <failed.down@gmail.com>"]
2018-09-10 04:24:43 +00:00
2018-09-11 01:31:25 +00:00
[workspace]
2018-09-11 21:58:16 +00:00
members = [".", "imlib2-sys"]
2018-09-11 01:31:25 +00:00
2018-09-10 06:52:54 +00:00
[lib]
crate-type = ["dylib", "rlib"]
2018-05-13 21:42:19 +00:00
[dependencies]
2018-09-10 06:52:54 +00:00
failure = "0.1"
2018-09-10 08:15:42 +00:00
png = "0.12"
2018-09-11 21:58:16 +00:00
imlib2-sys = { path = "imlib2-sys" }
libc = "0.2"
2018-09-10 06:52:54 +00:00
structopt = "0.2"
time = "0.1"
2018-09-11 21:58:16 +00:00
x11 = { version = "2.18", features = ["xlib"] }