-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 1.06 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
[package]
name = "epicac"
version = "0.1.0"
authors = ["Bryant Biggs <[email protected]>"]
description = "Amazon EKS Pod Identity cross-account credentials"
documentation = "https://github.com/clowdhaus/epicac"
homepage = "https://github.com/clowdhaus/epicac"
repository = "https://github.com/clowdhaus/epicac"
license = "Apache-2.0"
edition = "2021"
categories = [
"command-line-utilities",
"kubernetes",
]
[dependencies]
http = "1.1"
miniserde = "0.1"
[dev-dependencies]
insta = "1.39"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
[workspace.metadata.dist]
cargo-dist-version = "0.14.1"
ci = "github"
installers = []
targets = [
# TODO - https://github.com/axodotdev/cargo-dist/issues/74
# "aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"aarch64-pc-windows-msvc",
"x86_64-pc-windows-msvc"
]
pr-run-mode = "plan"
[workspace.metadata.dist.dependencies.apt]
gcc-aarch64-linux-gnu = { version = '*', targets = ["aarch64-unknown-linux-gnu"] }