From 08050b4e171f601906d914bfa54cbc507fd4f034 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 14 May 2022 13:21:11 +0100 Subject: [PATCH] Make TomlQuote pub Like it should have been. Signed-off-by: Ian Jackson --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index 14f2986d..8c5f58be 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -335,7 +335,7 @@ impl Result> //========== toml ==================== #[derive(Debug,Copy,Clone,Eq,PartialEq,Ord,PartialOrd)] -struct TomlQuote<'s>(pub &'s str); +pub struct TomlQuote<'s>(pub &'s str); // We reimplement this because the toml crate doesn't expose it, and // looking at the github issues etc. for that crate isn't encuraging. -- 2.30.2