forked from xjmzx/ncover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 961 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (37 loc) · 961 Bytes
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
[package]
name = "xcolor"
version = "0.6.0"
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/xjmzx/xcolor"
repository = "https://github.com/xjmzx/xcolor"
build = "build.rs"
exclude = ["_config.yml"]
edition = "2021"
rust-version = "1.80"
[dependencies]
anyhow = "1"
nom = "7"
clap = { version = "4", features = ["cargo", "derive"] }
nix = { version = "0.29", features = ["fs", "process"] }
[dependencies.x11]
version = "2"
features = ["xlib", "xcursor"]
[dependencies.xcb]
version = "1.5"
features = ["xlib_xcb"]
[build-dependencies]
clap = { version = "4", features = ["cargo", "derive"] }
clap_complete = "4"
[profile.release]
lto = true
panic = "abort"
[workspace]
members = ["ncover"]