-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
44 lines (36 loc) · 1.46 KB
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
[package]
authors = ["Ian Pratt <ianjdpratt@gmail.com>"]
categories = ["command-line-utilities", "config"]
description = "Manage and backup dotfiles with ease!"
edition = "2021"
homepage = "https://github.com/cogsandsquigs/dotbak"
keywords = ["cli", "dotfiles", "linux", "macos", "unix"]
license = "AGPL-3.0"
name = "dotbak"
readme = "README.md"
repository = "https://github.com/cogsandsquigs/dotbak"
version = "0.4.0-alpha.0"
[dependencies]
# CLI
clap = { version = "^4", features = ["derive"] } # Parse CLI
console = "^0.15" # Colored output
indicatif = "^0.17" # Progress bars
# Error handling
miette = { version = "^5", features = ["fancy"] } # For pretty errors
thiserror = "^1.0.53" # For error handling
# Configuration serialization/deserialization
serde = { version = "^1", features = ["derive"] }
toml = "^0.8"
# Filesystem
dirs = "^5" # Getting the user's home directory
# Misc.
itertools = "^0.12" # For iterators and other things
daemonize = "^0.5" # For daemonizing the process
# TODO: add tracing (https://lib.rs/crates/tracing) for debugging/logging.
# TODO: look at blessed.rs (https://blessed.rs/crates) for terminal UI/others/etc.
[dev-dependencies]
assert_fs = "^1" # For testing filesystem operations
is_ci = "^1" # For checking if we're in CI
[[bin]]
name = "dotbak"
path = "src/main.rs"