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

Replace features_check mod with a call to std::compile_error!. #1124

Merged
merged 1 commit into from Apr 16, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/features_check/error.rs

This file was deleted.

13 changes: 0 additions & 13 deletions src/features_check/mod.rs

This file was deleted.

5 changes: 3 additions & 2 deletions src/lib.rs
Expand Up @@ -363,6 +363,9 @@
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(not(any(feature = "std", feature = "alloc")))]
compile_error!("serde_json requires that either `std` (default) or `alloc` feature is enabled");

extern crate alloc;

#[cfg(feature = "std")]
Expand Down Expand Up @@ -409,8 +412,6 @@ pub mod ser;
mod ser;
pub mod value;

mod features_check;

mod io;
#[cfg(feature = "std")]
mod iter;
Expand Down