-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
74 lines (70 loc) · 2.37 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
authors = ["Jonathan Morley <[email protected]>"]
description = "Generates temporary AWS credentials with Okta."
edition = "2021"
name = "oktaws"
version = "0.19.1"
license = "Apache-2.0"
repository = "https://github.com/jonathanmorley/oktaws"
keywords = ["okta", "aws", "saml"]
categories = [
"command-line-utilities",
"authentication"
]
readme = "README.md"
[dependencies]
async-recursion = "1"
aws-arn = "0.3"
aws-credential-types = "1"
aws-sdk-sts = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-iam = { version = "1", features = ["behavior-version-latest"] }
backoff = { version = "0.4", features = ["tokio"] }
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
clap-verbosity-flag = "3"
color-eyre = "0.6"
dialoguer = "0.11"
dirs = "5"
futures = "0.3"
glob = "0.3"
itertools = "0.13"
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service", "vendored"] }
kuchiki = "0.8"
lazy_static = "1"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["cookies", "json", "rustls-tls"] }
samuel = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
toml = "0.8"
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = "0.3"
tracing-tree = "0.4"
url = { version = "2", features = ["serde"] }
whoami = "1"
eyre = "0.6"
aws-smithy-types = "1"
aws-runtime = "1"
aws-types = "1"
mockall_double = "0.3"
[dev-dependencies]
aws-smithy-runtime = { version = "1", features = ["test-util"] }
http = "1"
mockall = "0.13"
serial_test = "3"
tempfile = "3"
tokio-test = "0.4"
[patch.crates-io]
aws-credential-types = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
aws-runtime = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
aws-smithy-async = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
aws-smithy-runtime-api = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
aws-smithy-types = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
aws-types = { git = "https://github.com/jonathanmorley/smithy-rs", branch = "profile-mutation" }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"