/ Cargo.toml
Cargo.toml
1 [package] 2 name = "blaze-ssh" 3 version = "0.0.7" 4 edition = "2021" 5 authors = ["Sreedev Kodichath <sreedevpadmakumar@gmail.com>"] 6 description = "A Configurable CLI tool that helps you ssh into aws ec2 instances without leaving the terminal" 7 rust-version = "1.78.0" 8 repository = "https://github.com/sreedevk/blaze-ssh" 9 readme = "README.md" 10 keywords = ["aws", "ssh", "ec2", "terminal", "cli"] 11 categories = ["cli", "terminal", "aws", "ssh"] 12 license = "GPL-3.0" 13 14 [[bin]] 15 name = "blssh" 16 path = "src/main.rs" 17 18 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 19 20 [dependencies] 21 anyhow = "1.0.75" 22 aws-config = { version = "1.0.3", features = ["behavior-version-latest"] } 23 aws-sdk-ec2 = "1.4.0" 24 clap = { version = "4.4.11", features = ["derive"] } 25 crossterm = "0.27.0" 26 prettytable-rs = "0.10.0" 27 ratatui = "0.25.0" 28 serde = { version = "1.0.193", features = ["derive"] } 29 serde_json = "1.0.108" 30 shellexpand = "3.1.0" 31 tokio = { version = "1.34.0", features = ["full"] } 32 toml = "0.8.8"