-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (37 loc) · 915 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
44
45
46
[package]
name = "ghmd"
version = "0.1.0"
authors = ["Wayne Warren <[email protected]>", "Jake Schurch <[email protected]>"]
edition = "2021"
repository = "https://github.com/waynr/ghmd"
readme = "README.md"
license = "MIT"
categories = ['command-line-utilities']
description = "gotta have my dots"
[badges]
is-it-maintained-issue-resolution = { repository = "waynr/ghmd" }
is-it-maintained-open-issues = { repository = "waynr/ghmd" }
maintenance = { status = "actively-developed" }
[[bin]]
name = "ghmd"
path = "src/main.rs"
[dev-dependencies]
dirs = "2.0.2"
tempfile = "3.1.0"
[dependencies]
clap = { version = "3.2", features = ["cargo"] }
# logging
log = "0.4"
pretty_env_logger = "0.4"
# serialization
toml = "0.5.4"
serde = "1.0.102"
serde_derive = "1.0.102"
# file handling
fs_extra = "1.2.0"
dirs = "2.0.2"
glob = "0.3.0"
chrono = "0.4"
# error handling
anyhow = "1.0"
thiserror = "1.0"