forked from michael/leanshot
update deps
This commit is contained in:
parent
22b6e7556f
commit
5b7e0c98a7
5 changed files with 489 additions and 307 deletions
783
Cargo.lock
generated
783
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "leanshot"
|
||||
description = "Screenshot capture for Linux."
|
||||
version = "0.3.2"
|
||||
version = "0.3.3"
|
||||
repository = "https://github.com/iptq/leanshot"
|
||||
license-file = "LICENSE"
|
||||
authors = ["Michael Zhang <failed.down@gmail.com>"]
|
||||
|
@ -11,12 +11,12 @@ members = [".", "imlib2", "imlib2/imlib2-sys", "xlib"]
|
|||
|
||||
[dependencies]
|
||||
failure = "0.1"
|
||||
gl = "0.10"
|
||||
glutin = "0.18"
|
||||
gl = "0.11"
|
||||
glutin = "0.19"
|
||||
imlib2 = { version = "0.1", path = "./imlib2" }
|
||||
leanshot_xlib = { version = "0.1", path = "./xlib" }
|
||||
nanovg = { version = "1.0.2", features = ["gl3"] }
|
||||
png = "0.12"
|
||||
png = "0.14"
|
||||
structopt = "0.2"
|
||||
time = "0.1"
|
||||
x11 = { version = "2.18", features = ["xlib"] }
|
||||
|
|
|
@ -2,6 +2,7 @@ leanshot
|
|||
========
|
||||
|
||||
[![](https://api.travis-ci.org/iptq/leanshot.svg?branch=develop)](https://travis-ci.org/iptq/leanshot)
|
||||
[![dependency status](https://deps.rs/repo/github/iptq/leanshot/status.svg)](https://deps.rs/repo/github/iptq/leanshot)
|
||||
|
||||
Screenshot-capturing utility.
|
||||
|
||||
|
|
|
@ -10,4 +10,4 @@ build = "build.rs"
|
|||
path = "lib.rs"
|
||||
|
||||
[build-dependencies]
|
||||
bindgen = "0.40"
|
||||
bindgen = "0.47"
|
||||
|
|
|
@ -13,7 +13,7 @@ pub enum Region {
|
|||
/// Optiosn for screenshot
|
||||
#[derive(StructOpt)]
|
||||
pub struct Options {
|
||||
/// The region to select
|
||||
/// The region to select (fullscreen | window | select)
|
||||
#[structopt(parse(try_from_str = "Region::from_str"))]
|
||||
pub region: Region,
|
||||
|
||||
|
|
Loading…
Reference in a new issue