#[cfg(test)] mod all_features_tests { #[cfg(feature = "bincode")] #[test] fn test_bincode_build() { // ensure that feature builds } #[cfg(feature = "burn_dtype")] #[test] fn test_burn_dtype_build() { // ensure that feature builds } #[cfg(feature = "burn")] #[test] fn test_burn_build() { // ensure that feature builds } #[cfg(feature = "tokio")] #[test] fn test_tokio_build() { // ensure that feature builds } #[cfg(feature = "rustls")] #[test] fn test_rustls_build() { // ensure that feature builds } }