serde-json-core-fmt 0.1.1

serde-json for no_std programs
Documentation

Forked from serde-json-core, removed heapless dependency and changed to using core::fmt::Formatter

Usage

struct AnyStruct {}

impl core::fmt::Display for AnyStruct {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        serde_json_core_fmt::to_fmt(f, self)
    }
}