Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/serde-1.0.193
Browse files Browse the repository at this point in the history
  • Loading branch information
deepu105 committed Jan 5, 2024
2 parents 00f5749 + 51ad7cf commit 98622ec
Show file tree
Hide file tree
Showing 23 changed files with 383 additions and 52 deletions.
214 changes: 210 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Expand Up @@ -34,6 +34,8 @@ ratatui = { version = "0.23.0", default-features = false, features = [
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
syntect = "5.1.0"
syntect-tui = "2.0.0"
clap = { version = "4.3.24", features = [
"help",
"usage",
Expand Down
5 changes: 3 additions & 2 deletions src/app/configmaps.rs
Expand Up @@ -17,8 +17,9 @@ use crate::{
draw_resource_tab,
network::Network,
ui::utils::{
draw_describe_block, draw_resource_block, get_describe_active, get_resource_title,
style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT, DESCRIBE_AND_YAML_HINT,
draw_describe_block, draw_resource_block, draw_yaml_block, get_describe_active,
get_resource_title, style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT,
DESCRIBE_AND_YAML_HINT,
},
};

Expand Down
4 changes: 2 additions & 2 deletions src/app/cronjobs.rs
Expand Up @@ -15,8 +15,8 @@ use crate::{
draw_resource_tab,
network::Network,
ui::utils::{
draw_describe_block, draw_resource_block, get_describe_active, get_resource_title,
style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT,
draw_describe_block, draw_resource_block, draw_yaml_block, get_describe_active,
get_resource_title, style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT,
DESCRIBE_YAML_AND_ESC_HINT,
},
};
Expand Down
5 changes: 3 additions & 2 deletions src/app/daemonsets.rs
Expand Up @@ -15,8 +15,9 @@ use crate::{
draw_resource_tab,
network::Network,
ui::utils::{
draw_describe_block, draw_resource_block, get_describe_active, get_resource_title,
style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT, DESCRIBE_AND_YAML_HINT,
draw_describe_block, draw_resource_block, draw_yaml_block, get_describe_active,
get_resource_title, style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT,
DESCRIBE_AND_YAML_HINT,
},
};

Expand Down
5 changes: 3 additions & 2 deletions src/app/deployments.rs
Expand Up @@ -15,8 +15,9 @@ use crate::{
draw_resource_tab,
network::Network,
ui::utils::{
draw_describe_block, draw_resource_block, get_describe_active, get_resource_title,
style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT, DESCRIBE_AND_YAML_HINT,
draw_describe_block, draw_resource_block, draw_yaml_block, get_describe_active,
get_resource_title, style_primary, title_with_dual_style, ResourceTableProps, COPY_HINT,
DESCRIBE_AND_YAML_HINT,
},
};

Expand Down

0 comments on commit 98622ec

Please sign in to comment.