From: Ian Jackson Date: Sat, 14 May 2022 12:21:11 +0000 (+0100) Subject: Make TomlQuote pub X-Git-Tag: otter-1.1.0~196 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=08050b4e171f601906d914bfa54cbc507fd4f034;p=otter.git Make TomlQuote pub Like it should have been. Signed-off-by: Ian Jackson --- 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.