-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (40 loc) · 1018 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
[package]
name = "aws-wire-lengths"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
[features]
default = ["vendored-openssl"]
vendored-openssl = ['openssl/vendored']
[dependencies]
anyhow = "1"
aws-config = "1"
aws-sdk-ebs = "1"
aws-sdk-ec2 = "1"
aws-sdk-ec2instanceconnect = "1"
aws-sdk-s3 = "1"
aws-sdk-sts = "1"
aws-smithy-types = "1"
aws-types = "1"
base64 = "0.22"
bytes = "1"
chrono = "0.4"
dirs-next = "2"
futures = "0.3"
hiercmd = { git = "https://github.com/jclulow/hiercmd" }
http-body = "1"
hyper = { version = "1" }
rand = "0.8"
rsa = "0.9"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10.1"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = [ "io", "codec" ] }
toml = "0.8"
#
# I believe it is necessary to pull this in here, so that we can demand the
# static linking of the vendored OpenSSL. We don't use it directly, but the
# same version will then be used by reqwest.
#
openssl = { version = "0.10", optional = true }