forked from pwinckles/bagr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (45 loc) · 874 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
47
48
49
50
51
52
53
54
55
[package]
name = "bagr"
version = "0.4.0-dev"
edition = "2021"
authors = ["Peter Winckles <[email protected]>"]
description = "A CLI for interacting with BagIt bags"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/pwinckles/bagr"
homepage = "https://github.com/pwinckles/bagr"
documentation = "https://docs.rs/bagr/"
[[bin]]
name = "bagr"
path = "src/bin/bagr.rs"
[profile.release]
strip = true
[dependencies]
# General
chrono = "0.4"
once_cell = "1"
regex = "1"
serde = "1"
# Errors
snafu = "0.7"
# Enum features
strum = "0.23"
strum_macros = "0.23"
# Filesystem
walkdir = "2"
# Digests
digest = "0.10"
blake2 = "0.10"
hex = "0.4"
md-5 = "0.10"
sha-1 = "0.10"
sha2 = "0.10"
# CLI
clap = { version = "3", features = ["derive"] }
ansi_term = "0.12"
atty = "0.2"
# Logging
log = "0.4"
env_logger = "0.9"
[dev-dependencies]
trycmd = "0.12"