-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (34 loc) · 1.21 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
[package]
name = "iam_assumer"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "iam-assumer"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aws-config = { version = "1.3.0", features = ["behavior-version-latest"] }
aws-sdk-sts = { version = "1.22.0", features = ["behavior-version-latest"] }
aws-smithy-types-convert = { version = "0.60.8", features = ["convert-chrono"] }
axum = { version = "0.7.5", features = ["macros"] }
chrono = { version = "0.4.37", features = ["serde"] }
clap = { version = "4.5.4", features = [
"unicode",
"env",
"wrap_help",
"derive",
] }
hyper = { version = "1.2.0", features = ["http1", "server", "full"] }
hyper-util = { version = "0.1.3", features = ["server", "http1", "full"] }
json = "0.12.4"
nix = { version = "0.29.0", features = ["process", "signal"] }
rand = "0.8.5"
rustls-native-certs = "0.8.0"
serde = { version = "1.0.200", features = ["alloc", "derive"] }
serde_json = "1.0.115"
tokio = { version = "1.36.0", features = ["full", "tracing"] }
tower = "0.5.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
url = "2.5.0"
clap_complete = "4.5.2"