Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct no-std support in README.md #609

Merged
merged 1 commit into from Jan 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Expand Up @@ -321,8 +321,11 @@ issues](https://github.com/serde-rs/json/issues/new) as well.

## No-std support

This crate currently requires the Rust standard library. For JSON support in
Serde without a standard library, please see the [`serde-json-core`] crate.
It is possible to opt out of the Rust standard library by enabling the `alloc`
feature (and disabling the default `std` one). This is supported on Rust 1.36+.

For JSON support in Serde without a memory allocator, please see the
[`serde-json-core`] crate.

[`serde-json-core`]: https://japaric.github.io/serde-json-core/serde_json_core/

Expand Down