-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (57 loc) · 1.8 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
[package]
name = "ssm-tui"
version = "0.1.5"
edition = "2021"
# Github Repo
authors = ["Sandesh Grangdan<[email protected]>"]
description = "A TUI for interacting with AWS SSM"
repository = "https://github.com/sandeshgrangdan/ssm-tui"
homepage = "https://github.com/sandeshgrangdan/ssm-tui"
license = "MIT OR Apache-2.0"
[package.metadata.wix]
upgrade-guid = "9A0A9FB4-1F65-4836-BB44-0C5C053F5971"
path-guid = "75DA7874-955D-4448-8F17-DCA609DD47F5"
license = false
eula = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Sandesh
[dependencies]
aws-config = "1.5.13"
aws-sdk-ssm = "1.59.0"
chrono = "0.4.38"
clap = { version = "4.5.16", features = ["derive"] }
color-eyre = "0.6.3"
crossterm = "0.28.1"
pretty_assertions = "1.4.1"
rand = "0.8.5"
ratatui = "0.29.0"
time = "0.3.36"
tokio = { version = "1.35.1", features = ["full"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.21.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = true