-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 962 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
[package]
name = "awsbck"
version = "0.3.10"
edition = "2021"
authors = ["Valentin Bersier <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Utility to backup a folder to AWS S3, once or periodically."
repository = "https://github.com/beeb/awsbck"
readme = "./README.md"
keywords = ["aws", "s3", "backup", "aws-s3"]
categories = ["command-line-utilities", "filesystem"]
[dependencies]
anyhow = "1"
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1"
aws-smithy-types = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4", features = ["derive", "env"] }
cron = "0.14"
dotenvy = "0.15"
env_logger = "0.11"
flate2 = "1"
log = "0.4"
tar = "0.4"
temp-dir = "0.1"
tokio = { version = "1", features = ["rt", "macros", "signal"] }
uuid = { version = "1", features = ["v4", "fast-rng"] }
[dev-dependencies]
dockertest = "0.5"
[profile.release]
lto = "thin"
strip = true