-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
54 lines (50 loc) · 1.35 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
[package]
name = "sheldon"
version = "0.6.4"
authors = ["Ross MacArthur <ross@macarthur.io>"]
edition = "2018"
description = "Fast, configurable, shell plugin manager."
documentation = "https://sheldon.cli.rs"
readme = "README.md"
repository = "https://github.com/rossmacarthur/sheldon"
license = "MIT OR Apache-2.0"
keywords = ["shell", "plugin", "manager", "zsh", "bash"]
categories = ["command-line-utilities"]
build = "build.rs"
include = ["src/**/*", "LICENSE-*", "README.md", "build.rs"]
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.42"
atty = "0.2.14"
casual = "0.2.0"
clap = "3.0.0-beta.2"
curl = "0.4.38"
fs2 = "0.4.3"
git2 = "0.13.20"
globwalk = "0.8.1"
handlebars = "4.1.0"
home = "0.5.3"
indexmap = { version = "1.7.0", features = ["rayon", "serde"] }
itertools = "0.10.1"
maplit = "1.0.2"
once_cell = "1.8.0"
rayon = "1.5.1"
regex = "1.5.4"
regex-macro = "0.1.1"
scoped_threadpool = "0.1.9"
serde = { version = "1.0.126", features = ["derive"] }
thiserror = "1.0.26"
toml = { version = "0.5.8", features = ["preserve_order"] }
toml_edit = "0.2.1"
url = { version = "2.2.2", features = ["serde"] }
walkdir = "2.3.2"
which = { version = "4.1.0", default-features = false }
[build-dependencies]
anyhow = "1.0.42"
[dev-dependencies]
pest = "2.1.3"
pest_derive = "2.1.0"
pretty_assertions = "0.7.2"
tempfile = "3.2.0"
[workspace]
members = ["tools/generate-readme"]