From fbdf47269f0c2f8ab877f83d225810f6f7011711 Mon Sep 17 00:00:00 2001 From: Benno van den Berg Date: Thu, 31 Mar 2022 14:26:40 +0200 Subject: [PATCH] Fix order for Proxy list (#64) Bump version to v0.3.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/proxies.rs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cb8915..b787fb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -717,7 +717,7 @@ dependencies = [ [[package]] name = "fp" -version = "0.2.0" +version = "0.3.1" dependencies = [ "anyhow", "base64uuid", diff --git a/Cargo.toml b/Cargo.toml index 9128686..8a0e12e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fp" -version = "0.3.0" +version = "0.3.1" authors = ["Team Fiberplane"] edition = "2018" build = "build.rs" diff --git a/src/proxies.rs b/src/proxies.rs index aaa510f..8b08676 100644 --- a/src/proxies.rs +++ b/src/proxies.rs @@ -154,12 +154,12 @@ async fn handle_remove_command(args: SingleProxyArgs) -> Result<()> { #[derive(Table)] pub struct ProxySummaryRow { - #[table(title = "ID")] - pub id: String, - #[table(title = "Name")] pub name: String, + #[table(title = "ID")] + pub id: String, + #[table(title = "Status")] pub status: String, }