forked from AnderEnder/aws-mfa-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (49 loc) · 1.24 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
51
52
53
54
[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]
anyhow = "1.0"
structopt = "0.3"
dirs = "3"
tokio = { version = "0.3", features=["macros", "rt-multi-thread"] }
tokio-compat-02 = "0.1"
rusoto_credential = "0.45"
rusoto_signature = "0.45"
regex = "1"
google-authenticator = "0.2.1"
[dependencies.rusoto_core]
version = "0.45"
default-features = false
features = [ "rustls" ]
[dependencies.rusoto_iam]
version = "0.45"
default-features = false
features = [ "rustls" ]
[dependencies.rusoto_sts]
version = "0.45"
default-features = false
features = [ "rustls" ]
[profile.release]
lto = "thin"
#lto = "fat"
#codegen-units = 1