-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 763 Bytes
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
[package]
name = "dotzilla-cli"
version = "0.2.6"
edition = "2021"
description = "A CLI tool to manage dotfiles with symbolic linking and staging capabilities"
authors = ["Rodrigo Bernardi <rodrigo@rbernardi.dev>"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/snakeice/dotzilla"
[[bin]]
name = "dotzilla"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
colored = "3.0"
crossterm = "0.28"
diffy = "0.4"
env_logger = "0.11"
fs_extra = "1.3"
home = "0.5"
log = "0.4"
ratatui = "0.29"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
which = "8.0"
sha2 = "0.10"
hex = "0.4"
hostname = "0.4"
[dev-dependencies]
tempfile = "3.8"