-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 1014 Bytes
/
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
[package]
name = "blaze-ssh"
version = "0.0.7"
edition = "2021"
authors = ["Sreedev Kodichath <[email protected]>"]
description = "A Configurable CLI tool that helps you ssh into aws ec2 instances without leaving the terminal"
rust-version = "1.78.0"
repository = "https://github.com/sreedevk/blaze-ssh"
readme = "README.md"
keywords = ["aws", "ssh", "ec2", "terminal", "cli"]
categories = ["cli", "terminal", "aws", "ssh"]
license = "GPL-3.0"
[[bin]]
name = "blssh"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
aws-config = { version = "1.0.3", features = ["behavior-version-latest"] }
aws-sdk-ec2 = "1.4.0"
clap = { version = "4.4.11", features = ["derive"] }
crossterm = "0.27.0"
prettytable-rs = "0.10.0"
ratatui = "0.25.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
shellexpand = "3.1.0"
tokio = { version = "1.34.0", features = ["full"] }
toml = "0.8.8"