-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.32 KB
/
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 = "cleanup"
version = "0.5.0"
edition = "2021"
authors = ["Pablo COVES <pablo.coves@protonmail.com>"]
license = "MIT"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
aws-config = { version = "0.15" }
aws-sdk-ec2 = { version = "0.15" }
chrono = { version = "0.4" }
clap = { version = "3", features = ["derive"] }
env_logger = { version = "0.9" }
futures = { version = "0.3" }
log = { version = "0.4" }
regex = { version = "1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
thiserror = { version = "1" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[build-dependencies]
chrono = { version = "0.4" }
clap = { version = "3", features = ["derive"] }
clap_complete = { version = "3" }