-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
42 lines (36 loc) · 818 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
[package]
name = "xcolor"
version = "0.5.1"
description = "Lightweight color picker for X11"
authors = [
"Samuel Laurén <samuel.lauren@iki.fi>",
"Callum Osmotherly <acheronfail@gmail.com>"
]
license = "MIT"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["color", "utility", "color-picker", "x11"]
homepage = "https://github.com/Soft/xcolor"
repository = "https://github.com/Soft/xcolor"
build = "build.rs"
exclude = ["_config.yml"]
edition = "2018"
[dependencies]
anyhow = "1"
nom = "7"
clap = "2"
nix = "0.22"
lazy_static = "1"
[dependencies.x11]
version = "2"
features = ["xlib", "xcursor"]
[dependencies.xcb]
version = "0.9"
features = ["xlib_xcb"]
[build-dependencies]
clap = "2"
[profile.release]
lto = true
panic = "abort"
[badges]
travis-ci = { repository = "Soft/xcolor" }