Sha256: 7cec8f809e279310a465c6a7725087970f219a676cc76c83de30c695bb490740

Contents?: true

Size: 362 Bytes

Versions: 23

Compression:

Stored size: 362 Bytes

Contents

#[macro_use]
pub(crate) mod memchr;
pub(crate) mod packedpair;
#[macro_use]
pub(crate) mod substring;

// For debugging, particularly in CI, print out the byte order of the current
// target.
#[test]
fn byte_order() {
    #[cfg(target_endian = "little")]
    std::eprintln!("LITTLE ENDIAN");
    #[cfg(target_endian = "big")]
    std::eprintln!("BIG ENDIAN");
}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
wasmtime-14.0.3 ./ext/cargo-vendor/memchr-2.6.4/src/tests/mod.rs
wasmtime-14.0.1 ./ext/cargo-vendor/memchr-2.6.4/src/tests/mod.rs
wasmtime-14.0.0 ./ext/cargo-vendor/memchr-2.6.4/src/tests/mod.rs