forked from SuperCuber/dotter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.1 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
[package]
name = "dotter"
version = "0.12.14"
authors = ["SuperCuber <amit.gold01@gmail.com>"]
description = "A dotfile manager and templater written in rust"
edition = "2018"
repository = "https://www.github.com/SuperCuber/dotter"
readme = "README.md"
keywords = ["dotter", "dotfiles", "manager"]
categories = ["command-line-utilities"]
license = "Unlicense"
[dependencies]
anyhow = "1.*"
clap = { version = "4.0.26", features = ["derive"] }
clap_complete = "4.0.5"
crossterm = "0.25.0"
diff = "0.1.*"
handlebars = { version = "4.*", features = ["script_helper"] }
hostname = "0.3.*"
log = "0.4.*"
maplit = "1.*"
meval = "0.2.*"
serde = "1.*"
shellexpand = "2.*"
simplelog = "0.12.*"
tokio = "1.*"
toml = "0.4.*"
watchexec = "=2.0.0-pre.14"
[dependencies.handlebars_misc_helpers]
version = "0.12.*"
default-features = false
features = ["string", "json"]
[dev-dependencies]
mockall = "0.11.3"
# Enable this instead for better failure messages (on nightly only)
# mockall = { version = "0.9.*", features = ["nightly"] }
[target.'cfg(windows)'.dependencies]
dunce = "1.*"
[target.'cfg(unix)'.dependencies]
libc = "0.2.137"