Skip to content

Commit

Permalink
Merge pull request #2439 from golemfactory/scx1332/fix_pretty_table
Browse files Browse the repository at this point in the history
Fix pretty table crash by bumping version
  • Loading branch information
scx1332 committed Feb 1, 2023
2 parents 1136331 + 9c922a0 commit 678c540
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 81 deletions.
98 changes: 20 additions & 78 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion golem_cli/Cargo.toml
Expand Up @@ -27,7 +27,7 @@ futures = "0.3"
lazy_static = "1.4"
log = "0.4"
names = "0.10.0"
prettytable-rs = "0.8.0"
prettytable-rs = "0.10.0"
promptly = "0.3.0"
rustyline="6.3.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion golem_cli/src/status.rs
Expand Up @@ -4,7 +4,7 @@ use ansi_term::{Colour, Style};
use anyhow::{anyhow, Result};
use bigdecimal::BigDecimal;
use futures::prelude::*;
use prettytable::{cell, format, row, Table};
use prettytable::{format, row, Table};
use strum::VariantNames;

use ya_core_model::payment::local::{NetworkName, StatusResult};
Expand Down
2 changes: 1 addition & 1 deletion utils/cli/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ keywords = ["golem", "yagna"]

[dependencies]
anyhow = "1.0"
prettytable-rs = "0.9"
prettytable-rs = "0.10.0"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
Expand Down

0 comments on commit 678c540

Please sign in to comment.