Sha256: a550e1b89db0c79d0dce89e7e48a4c7e28130acdea0632214c0cbaab9c661bee

Contents?: true

Size: 634 Bytes

Versions: 4

Compression:

Stored size: 634 Bytes

Contents

// Whenever the lib.rs changes, the SCHEMA_FILE_HASH environment variable will change and the
// schema_version test below will fail.
// Proceed as follows:
//
// If the schema in this library has changed then:
//  1. Change this APPROVED_SCHEMA_FILE_HASH to the new hash.
//
// If the schema in this library has changed then:
//  1. Bump the version in `crates/shared/Cargo.toml`
//  2. Change the `SCHEMA_VERSION` in this library to this new Cargo.toml version
const APPROVED_SCHEMA_FILE_HASH: &'static str = "584864585234329974";

#[test]
fn schema_version() {
    assert_eq!(env!("SCHEMA_FILE_HASH"), APPROVED_SCHEMA_FILE_HASH)
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wasmtime-8.0.0 ./ext/cargo-vendor/wasm-bindgen-shared-0.2.84/src/schema_hash_approval.rs
wasmtime-7.0.0 ./ext/cargo-vendor/wasm-bindgen-shared-0.2.84/src/schema_hash_approval.rs
wasmtime-6.0.1 ./ext/cargo-vendor/wasm-bindgen-shared-0.2.84/src/schema_hash_approval.rs
wasmtime-6.0.0 ./ext/cargo-vendor/wasm-bindgen-shared-0.2.84/src/schema_hash_approval.rs