[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-reference"
version = "0.1.0"
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",
]
[lib]
name = "vyre_reference"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "=1.25.0"
features = ["derive"]
[dependencies.vyre]
version = "0.4.0"
default-features = false
[dependencies.vyre-spec]
version = "0.1.1"
[dev-dependencies.proptest]
version = "=1.9.0"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
[lints.rust]
missing_docs = "warn"
nonstandard_style = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"