This is not real core lib since it depends on serde which is standard library.
Jiuhong-casperlabs opened this issue · 2 comments
Jiuhong-casperlabs commented
This is not real core lib since it depends on serde which is standard library.
eldruin commented
This is called -core because it does not use the Rust standard library.
Closing as non-actionable.
ryan-summers commented
I am unsure what issue you are having. This crate is designed to work in a no_std environment. If you are having issues with that, please post them here. Posting statements like in the topic and issue body aren't relevant to any particular issue.
To clarify some issues that I suspect you might have (rather, using serde-json-core in a no_std environment), let me provide some points of clarification:
serdeis not a part ofstd. It is indeed its own crate namedserdethat must be specified in theCargo.tomlfile.serdecan be used without thestdlibrary, but some default-features need to be disabled.
If you're having issues using this crate or serde in a no_std environment, please check out https://serde.rs/no-std.html.