-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (36 loc) · 1.2 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
[package]
name = "xshe"
version = "0.5.1"
edition = "2021"
description = "Set environment variables across multiple shells with a single configuration file."
readme = "README.md"
homepage = "https://xshe.superatomic.dev"
repository = "https://github.com/superatomic/xshe"
keywords = ["cli", "shell", "environment-variable", "configuration", "command"]
categories = ["command-line-utilities", "config", "parsing"]
license = "MIT OR Apache-2.0"
exclude = [".github/"]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.7", features = ["derive", "env", "wrap_help"] }
clap-verbosity-flag = "1.0.1"
exitcode = "1.1.2"
toml = "0.5.9"
serde = { version = "1.0.137", features = ["derive"] }
indexmap = { version = "1.9.1", features = ["serde"] }
human-panic = "1.0.3"
log = "0.4.17"
env_logger = "0.9.0"
colored = "2.0.0"
dirs = "4.0.0"
[dev-dependencies]
indoc = "1.0.6"
maplit = "1.0.2"
pretty_assertions = "1.2.1"
[build-dependencies]
clap = { version = "3.2.7", features = ["derive", "env", "wrap_help"] }
clap-verbosity-flag = "1.0.1"
clap_mangen = "0.1.10"
clap_complete = "3.2.3"