serde_field_with/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6#[cfg(feature = "alloc")]
7pub mod to_and_from_string;
8#[cfg(feature = "alloc")]
9pub use to_and_from_string::{deserialize as from_str, serialize as to_string};
10
11#[cfg(feature = "alloc")]
12pub mod to_and_from_string_option;