From 38ca690f2f4a503093496736bdeb3a8963948404 Mon Sep 17 00:00:00 2001 From: Maarten de Vries Date: Fri, 12 Sep 2025 13:07:49 +0200 Subject: [PATCH] Remove wrong note about missing string escaping. String escaping during serialization is implemented and tested. --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 5e8b9220..6de20fab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,15 +47,13 @@ //! - `bool` //! - Integers //! - Floats -//! - `str` (\*\*) +//! - `str` //! - `Option` //! - Arrays //! - Tuples //! - Structs //! - C like enums //! -//! (\*\*) Serialization of strings doesn't escape stuff. This simply has not been implemented yet. -//! //! # Planned features //! //! - (De)serialization from / into IO objects once `core::io::{Read,Write}` becomes a thing.