-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 947 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
[package]
name = "aws-easy-sso"
version = "0.6.0"
description = "CLI tool to make AWS SSO more convenient."
authors = ["Martin Sturm", "Martin Sturm <noreply@martin-sturm.cloud>"]
edition = "2021"
license = "GPL-3.0-only"
homepage = "https://github.com/sturmm/aws-easy-sso"
repository = "https://github.com/sturmm/aws-easy-sso"
keywords = ["aws", "sso", "cli"]
categories = ["command-line-utilities", "aws"]
[[bin]]
name = "aws-easy-sso-cli"
path = "src/main.rs"
[dependencies]
anyhow = "^1.0.79"
aws-config = { version = "1.1.2", features = ["behavior-version-latest"] }
aws-sdk-sso = "^1.10.0"
aws-sdk-ssooidc = "^1.10.0"
aws-types = "1.1.2"
chrono = "0.4.31"
clap = { version = "4.4.16", features = ["derive", "env"] }
directories = "5.0.1"
inquire = "^0.6.2"
open = "5.0.1"
rust-ini = "0.20.0"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sha1 = "0.10.6"
tokio = { version = "1.35.1", features = ["full"] }