diff --git a/pbs-tools/src/lib.rs b/pbs-tools/src/lib.rs index 9bf1368c..3acdd901 100644 --- a/pbs-tools/src/lib.rs +++ b/pbs-tools/src/lib.rs @@ -1,6 +1,7 @@ pub mod borrow; pub mod format; pub mod fs; +pub mod nom; pub mod str; mod command; diff --git a/src/tools/nom.rs b/pbs-tools/src/nom.rs similarity index 100% rename from src/tools/nom.rs rename to pbs-tools/src/nom.rs diff --git a/src/tools/mod.rs b/src/tools/mod.rs index 21d33365..1e1ea878 100644 --- a/src/tools/mod.rs +++ b/src/tools/mod.rs @@ -23,6 +23,7 @@ use proxmox_http::{ ProxyConfig, }; +pub use pbs_tools::nom; pub use pbs_tools::{run_command, command_output, command_output_as_string}; pub mod acl; @@ -44,7 +45,6 @@ pub mod logrotate; pub mod loopdev; pub mod lru_cache; pub mod async_lru_cache; -pub mod nom; pub mod serde_filter; pub mod statistics; pub mod subscription;