From f75292bd8df7e8ff1340e888988461d46e32a5cf Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 7 Jul 2021 11:33:06 +0200 Subject: [PATCH] move tools::json to pbs-tools Signed-off-by: Wolfgang Bumiller --- {src/tools => pbs-tools/src}/json.rs | 0 pbs-tools/src/lib.rs | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename {src/tools => pbs-tools/src}/json.rs (100%) diff --git a/src/tools/json.rs b/pbs-tools/src/json.rs similarity index 100% rename from src/tools/json.rs rename to pbs-tools/src/json.rs diff --git a/pbs-tools/src/lib.rs b/pbs-tools/src/lib.rs index 3acdd901..254dd41c 100644 --- a/pbs-tools/src/lib.rs +++ b/pbs-tools/src/lib.rs @@ -1,8 +1,9 @@ pub mod borrow; pub mod format; pub mod fs; +pub mod json; pub mod nom; pub mod str; mod command; -pub use command::{run_command, command_output, command_output_as_string}; +pub use command::{command_output, command_output_as_string, run_command};