[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-reference"
version = "0.4.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust CPU reference interpreter for vyre IR — byte-identical oracle for backend conformance and small-data fallback"
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-reference"
readme = "README.md"
keywords = [
"gpu",
"ir",
"reference",
"interpreter",
"vyre",
]
categories = [
"algorithms",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/vyre"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["subgroup-ops"]
subgroup-ops = []
[lib]
name = "vyre_reference"
path = "src/lib.rs"
[[test]]
name = "adversarial_empty"
path = "tests/adversarial_empty.rs"
[[test]]
name = "assign_semantics"
path = "tests/assign_semantics.rs"
[[test]]
name = "dual_reference_parity"
path = "tests/dual_reference_parity.rs"
[[test]]
name = "expr_adversarial_proptest"
path = "tests/expr_adversarial_proptest.rs"
[[test]]
name = "hashmap_async_and_indirect_contracts"
path = "tests/hashmap_async_and_indirect_contracts.rs"
[[test]]
name = "hashmap_buffer_size_contracts"
path = "tests/hashmap_buffer_size_contracts.rs"
[[test]]
name = "hashmap_invocation_size_contracts"
path = "tests/hashmap_invocation_size_contracts.rs"
[[test]]
name = "region_frame_lifetime"
path = "tests/region_frame_lifetime.rs"
[[test]]
name = "region_gate"
path = "tests/region_gate.rs"
[[test]]
name = "saturating_binops_contract"
path = "tests/saturating_binops_contract.rs"
[[test]]
name = "subnormal_contract"
path = "tests/subnormal_contract.rs"
[[test]]
name = "test_fnv1a32_zero"
path = "tests/fnv1a32_zero.rs"
[dependencies.blake3]
version = "=1.8.4"
[dependencies.bytemuck]
version = "=1.25.0"
features = ["derive"]
[dependencies.im]
version = "=15.1.0"
[dependencies.libm]
version = "=0.2.15"
[dependencies.rayon]
version = "1.10.0"
[dependencies.rustc-hash]
version = "=1.1.0"
[dependencies.smallvec]
version = "=1.14.0"
features = ["serde"]
[dependencies.vyre-foundation]
version = "0.4.1"
[dependencies.vyre-primitives]
version = "0.4.1"
[dependencies.vyre-spec]
version = "0.4.1"
[dev-dependencies.criterion]
version = "=0.5.1"
features = ["html_reports"]
[dev-dependencies.fnv]
version = "1.0.7"
[dev-dependencies.hex]
version = "=0.4.3"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.regex-automata]
version = "=0.4.14"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
erasing_op = "allow"
identity_op = "allow"
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"