-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.07 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
[workspace]
members = [
"eksnode",
"eksnode-gen",
]
resolver = "2"
[workspace.package]
authors = ["Bryant Biggs <[email protected]>"]
homepage = "https://github.com/clowdhaus/eksnode"
repository = "https://github.com/clowdhaus/eksnode"
license = "Apache-2.0"
edition = "2021"
categories = [
"command-line-utilities",
"kubernetes",
]
[workspace.dependencies]
anstyle = "1.0"
anyhow = "1.0"
aws-config = {version="1.0", features=["behavior-version-latest"]}
aws-types = "1.0"
aws-sdk-ec2 = "1.95"
clap = { version = "4.5", features = ["derive", "env", "color"] }
clap-verbosity-flag = "3.0"
regex-lite = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tracing = {version = "0.1", default-features = false, features = ["log-always"] }
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std", "ansi"] }
tokio = { version = "1.42", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
[profile.release]
strip = true
opt-level = "z"
lto = "fat"