-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (29 loc) · 941 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
[package]
name = "rustic-backup"
version = "0.2.1"
description = "Restic wrapper for convenient backups"
authors = ["Ben Navetta <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/bnavetta/rustic"
repository = "https://github.com/bnavetta/rustic.git"
keywords = ["restic", "backups"]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
edition = "2018"
[[bin]]
name = "rustic"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
human-panic = "1.0"
itertools = "0.9"
paw = "1.0"
serde = { version = "1.0", features = ["derive"] }
structopt = { version = "0.3", features = ["paw"] }
# Allow trace in release builds since it's controlled by a flag
slog = { version = "2.5", features = ["max_level_trace", "release_max_level_trace"] }
slog-term = "2.5"
tabwriter = "1.2"
toml = "0.5"
tempfile = "3.1"