-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
63 lines (56 loc) · 1.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "sauce"
version = "0.9.0"
authors = ["Dan Cardin <[email protected]>"]
edition = "2021"
description = "A tool for managing directory-specific state."
documentation = "https://github.com/DanCardin/sauce"
homepage = "https://github.com/DanCardin/sauce"
repository = "https://github.com/DanCardin/sauce"
readme = "README.md"
keywords = [
"source",
"shell",
"direnv",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
[features]
default = []
dev = []
[dependencies]
ansi_term = "0.12"
anyhow = "1.0.35"
atty = "0.2.14"
comfy-table = "5.0.0"
corpus = {version = "0.2.1", features = ["xdg", "home"]}
etcetera = "0.3.2"
glob = "0.3.0"
itertools = "0.10.0"
path-absolutize = "3.0.6"
snailquote = "0.3.1"
subprocess = "0.2.6"
toml_edit = "0.2.0"
once_cell = "1.8.0"
[dependencies.clap]
version = "4.3.3"
features = [
"color",
"derive",
"error-context",
"help",
"suggestions",
"usage",
"wrap_help",
]
[dependencies.indexmap]
version = "1.6.1"
features = ["serde-1"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
assert_cmd = "1.0.3"
indoc = "1.0"
predicates = "1.0.7"
pretty_assertions = "1.2.1"