Closed r-marques closed 5 years ago
This merge request makes it easier to replace serde_json with serde_json_core when building with no_std.
serde_json
serde_json_core
Example:
#[cfg(not(feature = "std"))] use serde_json_core as serde_json; let deserialized = serde_json::from_str("...").unwrap();
Thanks!
bors r+
This merge request makes it easier to replace
serde_json
withserde_json_core
when building with no_std.Example: