-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (41 loc) · 1.03 KB
/
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]
name = "i3nator"
version = "1.3.0-alpha.0"
edition = "2021"
authors = ["Pit Kleyersburg <[email protected]>"]
license = "MIT/Apache-2.0"
description = "i3nator is Tmuxinator for the i3 window manager"
homepage = "https://github.com/pitkley/i3nator"
repository = "https://github.com/pitkley/i3nator.git"
readme = "README.md"
categories = ["command-line-interface", "command-line-utilities", "gui"]
keywords = ["cli", "i3", "unix", "xdg"]
include = [
"**/*.rs",
"resources/**/*",
"Cargo.toml",
"LICENSE-*",
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
clap = { version = "3.2.15", features = ["cargo", "derive"] }
clap_complete = "3.1.4"
dirs-next = "2.0.0"
error-chain = "0.12.4"
getch = "0.3.1"
i3ipc = "0.10.1"
lazy_static = "1.4.0"
serde = { version = "1.0.140", features = ["derive"] }
tempfile = "3.3.0"
toml = "0.5.9"
wait-timeout = "0.2.0"
xdg = "2.4.1"
[dev-dependencies]
tempdir = "0.3.7"
[[bin]]
name = "i3nator"
path = "src/main.rs"
doc = false
[features]
sequential-tests = []