#[cfg(not(any(feature = "int32", feature = "int64", feature = "int8")))]
compile_error!("No integer width features selected: choose one of 'int32', 'int64', or 'int8'");
#[cfg(all(feature = "int32", feature = "int64"))]
compile_error!(
"Cannot enable both 'int32' and 'int64' features simultaneously: choose one integer width"
);
#[cfg(all(feature = "int32", feature = "int8"))]
compile_error!(
"Cannot enable both 'int32' and 'int8' features simultaneously: choose one integer width"
);
#[cfg(all(feature = "int64", feature = "int8"))]
compile_error!(
"Cannot enable both 'int64' and 'int8' features simultaneously: choose one integer width"
);
#[cfg(all(feature = "float-skip", feature = "float-error"))]
compile_error!("Cannot enable both 'float-skip' and 'float-error' features simultaneously");
#[cfg(all(feature = "float-skip", feature = "float-truncate"))]
compile_error!("Cannot enable both 'float-skip' and 'float-truncate' features simultaneously");
#[cfg(all(feature = "float-error", feature = "float-truncate"))]
compile_error!("Cannot enable both 'float-error' and 'float-truncate' features simultaneously");
#[cfg(all(
feature = "float-skip",
feature = "float-error",
feature = "float-truncate"
))]
compile_error!("Cannot enable multiple float behavior features: choose only one of 'float-skip', 'float-error', or 'float-truncate'");
#[cfg(all(feature = "float", feature = "float-skip"))]
compile_error!("Cannot enable both 'float' and 'float-skip' features: 'float-skip' is only for when float parsing is disabled");
#[cfg(all(feature = "float", feature = "float-error"))]
compile_error!("Cannot enable both 'float' and 'float-error' features: 'float-error' is only for when float parsing is disabled");
#[cfg(all(feature = "float", feature = "float-truncate"))]
compile_error!("Cannot enable both 'float' and 'float-truncate' features: 'float-truncate' is only for when float parsing is disabled");