diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a2ad773..0a749d4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## [Unreleased] - 04-May-2021 +## [0.0.9] - 10-May-2021 + - Improved error handling and error display +- Minor bug fixes and improvements ## [0.0.8] - 04-May-2021 diff --git a/Cargo.lock b/Cargo.lock index dff6b53d..cf143017 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,7 +150,7 @@ dependencies = [ "ansi_term", "atty", "bitflags", - "strsim 0.8.0", + "strsim", "textwrap 0.11.0", "unicode-width", "vec_map", @@ -219,41 +219,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "darling" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c" -dependencies = [ - "darling_core", - "darling_macro", -] - -[[package]] -name = "darling_core" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn", -] - -[[package]] -name = "darling_macro" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" -dependencies = [ - "darling_core", - "quote", - "syn", -] - [[package]] name = "dashmap" version = "4.0.2" @@ -339,28 +304,6 @@ dependencies = [ "termcolor", ] -[[package]] -name = "faux" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40c3668239842a12c1810beec5afa357caa1aca3ee6b7cd9c60514af9787061f" -dependencies = [ - "faux_macros", - "paste", -] - -[[package]] -name = "faux_macros" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bba2d3cc6542e349914482eea66e5c5cee9c6acd63b8fda73698b974234869f7" -dependencies = [ - "darling", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "fnv" version = "1.0.7" @@ -613,12 +556,6 @@ dependencies = [ "tokio-native-tls", ] -[[package]] -name = "ident_case" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" - [[package]] name = "idna" version = "0.2.2" @@ -693,7 +630,7 @@ dependencies = [ [[package]] name = "kdash" -version = "0.0.8" +version = "0.0.9" dependencies = [ "anyhow", "backtrace", @@ -702,7 +639,6 @@ dependencies = [ "clipboard", "crossterm", "duct", - "faux", "itertools", "k8s-openapi", "kube", @@ -1106,12 +1042,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "paste" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58" - [[package]] name = "pem" version = "0.8.3" @@ -1564,12 +1494,6 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - [[package]] name = "syn" version = "1.0.69" diff --git a/Cargo.toml b/Cargo.toml index 05e14fb9..5ee738b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kdash" -version = "0.0.8" +version = "0.0.9" authors = ["Deepu K Sasidharan "] description = """ A fast and simple dashboard for Kubernetes @@ -42,7 +42,6 @@ openssl = { version = "0.10.34", features = ["vendored"] } [dev-dependencies] spectral = "0.6.0" -faux = "0.1" [dev-dependencies.cargo-husky] version = "1"