#deserialize #cow #serde #string #optimization

no-std serde_cow

A library with more efficent serde deserializations for Cow

3 releases

0.1.2 Jul 17, 2024
0.1.1 Jul 17, 2024
0.1.0 Mar 24, 2024

#1566 in Parser implementations

Download history 1759/week @ 2024-06-27 2028/week @ 2024-07-04 3226/week @ 2024-07-11 3257/week @ 2024-07-18 2862/week @ 2024-07-25 2678/week @ 2024-08-01 3514/week @ 2024-08-08 4751/week @ 2024-08-15 4743/week @ 2024-08-22 4401/week @ 2024-08-29 4707/week @ 2024-09-05 4860/week @ 2024-09-12 4370/week @ 2024-09-19 4540/week @ 2024-09-26 4843/week @ 2024-10-03 4062/week @ 2024-10-10

18,416 downloads per month
Used in 32 crates (via serenity)

MIT license

6KB
84 lines

serde-cow

See the documentation on docs.rs or build locally with cargo doc --no-deps --open.

Minimum Supported Rust Version

This is currently 1.56 and is considered a breaking change to increase.


lib.rs:

A small library with a [Cow] wrappers that implements serde::Deserialize in the ways that should be expected.

By default, [Cow] is always deserialized to the Cow::Owned variant due to a lack of specialisation, but this library provides CowStr and CowBytes which deserialize to Cow::Borrowed if possible, borrowing from the original data.

Example

use std::borrow::Cow;

use serde_cow::CowStr;

let source = r#""Hello World""#;

let normal: Cow<str> = serde_json::from_str(source).unwrap();
assert!(matches!(normal, Cow::Owned(_))); // Wasteful!

let efficent: CowStr = serde_json::from_str(source).unwrap();
assert!(matches!(efficent.0, Cow::Borrowed(_))); // Zero copy!

Minimum Supported Rust Version

This is currently 1.56 and is considered a breaking change to increase.

Dependencies

~110–345KB