-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
29 lines (23 loc) · 798 Bytes
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
[package]
name = "parameter-store-executor"
version = "0.4.6"
edition = "2021"
authors = ["Johan Stenqvist <johan@stenqvist.net>"]
[[bin]]
name = "pse"
path = "src/main.rs"
[profile.release]
strip = true
[dependencies]
clap = { version = "4.6.1", features = ["cargo"] }
tokio = { version = "1.52.1", features = ["full"] }
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-ssm = { version = "1" }
[target.arm-unknown-linux-musleabihf.dependencies]
aws-lc-rs = { version = "*", features = ["bindgen"] }
[target.armv7-unknown-linux-musleabihf.dependencies]
aws-lc-rs = { version = "*", features = ["bindgen"] }
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["precommit-hook", "run-cargo-test", "run-cargo-fmt", "run-cargo-clippy"]