-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
50 lines (45 loc) · 1.44 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "credstash"
version = "0.9.2"
description = "Credstash is a utility for managing credentials in the AWS cloud"
keywords = ["AWS", "Amazon", "Secret", "Encryption", "Security"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/psibi/rucredstash"
authors = ["Sibi Prabakaran <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "4.3.4"
rusoto_core = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_dynamodb = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_ec2 = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_kms = { version = "0.48.0", default-features = false, features = ["rustls"] }
rusoto_credential = { version = "0.48.0", default-features = false }
rusoto_sts = { version = "0.48.0", default-features = false, features = ["rustls"] }
ring = "0.16.20"
bytes = "1.4.0"
base64 = "0.21.2"
hex = "0.4.3"
futures = "0.3.28"
either = "1.8.1"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
tokio = "1.28.2"
aes = "0.8.2"
env_logger = "0.10.0"
log = "0.4.19"
cipher = "0.4.4"
crypto-common = "0.1.6"
ctr = "0.9.2"
[lib]
name = "credstash"
path = "src/lib.rs"
[[bin]]
name = "rucredstash"
path = "src/main.rs"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true
codegen-units = 1
panic = 'abort'