From ec5ff23d70265b3ab5b5397b71a8d8d9d0b39bb6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 1 Mar 2022 14:57:45 +0100 Subject: [PATCH] make property_string module public Signed-off-by: Wolfgang Bumiller --- proxmox-schema/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-schema/src/lib.rs b/proxmox-schema/src/lib.rs index 13b0739a..50741654 100644 --- a/proxmox-schema/src/lib.rs +++ b/proxmox-schema/src/lib.rs @@ -19,7 +19,7 @@ pub use const_regex::ConstRegexPattern; pub mod de; pub mod format; -pub(crate) mod property_string; +pub mod property_string; mod schema; pub use schema::*;