Sha256: 9af40c4f2762a090df09cf8c275236c04dc6ef1fcf7b59a9f665a51b56a27212
Contents?: true
Size: 475 Bytes
Versions: 9
Compression:
Stored size: 475 Bytes
Contents
#![allow(unknown_lints, unexpected_cfgs)] #[cfg(not(any(feature = "full", target_family = "wasm")))] compile_error!("run main Tokio tests with `--features full`"); // CI sets `--cfg tokio_no_parking_lot` when trying to run tests with // `parking_lot` disabled. This check prevents "silent failure" if `parking_lot` // accidentally gets enabled. #[cfg(all(tokio_no_parking_lot, feature = "parking_lot"))] compile_error!("parking_lot feature enabled when it should not be");
Version data entries
9 entries across 9 versions & 1 rubygems