diff --git a/Cargo.toml b/Cargo.toml index 9e3108c..0231027 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ version = "0.1.0" edition = "2021" [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "4.4", features = ["derive"] } crossterm = "0.23" -futures = "0.3.17" -hyper = { version = "0.14.19", features = ["full"] } +futures = "0.3" +hyper = { version = "0.14", features = ["full"] } kube = { version = "0.73.0", features = ["runtime", "derive", "ws"] } k8s-openapi = { version = "0.15.0", features = ["v1_24"] } -tokio = { version = "1.14.0", features = ["full"] } -tokio-util = "0.7.0" -tui = "0.18" \ No newline at end of file +tokio = { version = "1.14", features = ["full"] } +tokio-util = "0.7" +tui = "0.19" \ No newline at end of file diff --git a/README.md b/README.md index a81d71b..b457c7b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Simple port forwarding TUI for Kubernetes 💻↔⎈ -![portnord in action](./media/portnord.mov) +![portnord in action](./media/portnord.gif) ## ✨ Features - List all ports exposed by services in a given namespace. @@ -27,7 +27,7 @@ OPTIONS: ## 🐞 Limitations -This is a work in progress, and functionality is currently limited and unstable. (This is a pet project I'm working on to learn Rust! 🦀😍 Apologies if the code does not look idiomatic 📝🥺) +This is a work in progress, and functionality is currently limited and unstable. (This is a pet project I'm working on to learn Rust! 🦀) A partial list of limitations: - The list of pods and services is not updated live. diff --git a/media/portnord.gif b/media/portnord.gif new file mode 100644 index 0000000..07de416 Binary files /dev/null and b/media/portnord.gif differ diff --git a/media/portnord.mov b/media/portnord.mov deleted file mode 100644 index 0c7f8be..0000000 Binary files a/media/portnord.mov and /dev/null differ