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};