-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (35 loc) · 923 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
[package]
name = "aws-mfa-session"
version = "0.2.4"
authors = ["Andrii Radyk <[email protected]>"]
description = """
A command line utility to generate temporary AWS credentials with virtual MFA device. Credentials could be exported into new shell or inserted into aws credentials file.
"""
documentation = "https://github.com/AnderEnder/aws-mfa-session"
homepage = "https://github.com/AnderEnder/aws-mfa-session"
repository = "https://github.com/AnderEnder/aws-mfa-session"
readme = "README.md"
keywords = [
"aws",
"sts",
"token",
"credentials",
]
categories = ["command-line-utilities"]
exclude = [
".github/*",
]
edition = "2018"
license = "MIT"
[dependencies]
structopt = "0.3"
dirs = "4"
tokio = { version = "1", features=["macros", "rt-multi-thread"] }
regex = "1"
aws-types = "0.4"
aws-config = "0.6"
aws-sdk-iam = "0.4"
aws-sdk-sts = "0.4"
[profile.release]
lto = "fat"
codegen-units = 1