-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (38 loc) · 927 Bytes
/
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
[package]
name = "hm"
version = "0.7.5"
authors = ["Matt Weller <[email protected]>"]
edition = "2018"
description = "homemaker. Slightly more than yet another dotfile manager."
license = "Apache-2.0"
repository = "https://github.com/hlmtre/homemaker"
keywords = ["dotfiles", "management", "dotfile"]
categories = ["command-line-utilities", "filesystem"]
include = ["src/**/*", "LICENSE", "README.md", "changelog.md"]
[lib]
name = "hm"
path = "src/lib/mod.rs"
[[bin]]
name = "hm"
path = "src/hm.rs"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "benchy_bench"
path = "benches/benchy_bench.rs"
harness = false
[dependencies]
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
dirs-next = "2.0"
shellexpand = "3.1.0"
symlink = "0.1.0"
solvent = "0.8.3"
indicatif = "0.16.2"
console = "0.15.8"
sys-info = "0.9.1"
strum_macros = "0.26.4"
strum = "0.26.3"
log = "0.4.22"
simplelog = "0.12"
chrono = "0.4"