-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
48 lines (39 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
authors = ["jD91mZM2 <me@krake.one>"]
description = "xautolock rewrite in Rust, with a few extra features"
license-file = "LICENSE"
name = "xidlehook"
repository = "https://github.com/jD91mZM2/xidlehook"
version = "0.4.4"
[dependencies]
clap = "2.29.2"
failure = "0.1.1"
[dependencies.ctrlc]
features = ["termination"]
optional = true
version = "3.1.0"
[dependencies.futures]
optional = true
version = "0.1.18"
[dependencies.libpulse-sys]
optional = true
version = "1.0.1"
[dependencies.tokio-core]
optional = true
version = "0.1.12"
[dependencies.tokio-io]
optional = true
version = "0.1.4"
[dependencies.tokio-signal]
optional = true
version = "0.1.5"
[dependencies.tokio-uds]
optional = true
version = "0.1.7"
[dependencies.x11]
features = ["xlib", "xss"]
version = "2.17.2"
[features]
default = ["pulse"]
pulse = ["tokio", "libpulse-sys"]
tokio = ["ctrlc", "futures", "tokio-core", "tokio-io", "tokio-signal", "tokio-uds"]