[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-spec"
version = "0.4.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Frozen data contracts for vyre — OpDef, AlgebraicLaw, Category, IntrinsicTable"
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-spec"
readme = "README.md"
keywords = [
"gpu",
"ir",
"specification",
"wgsl",
"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_spec"
path = "src/lib.rs"
[[test]]
name = "algebraic_law_surface"
path = "tests/algebraic_law_surface.rs"
[[test]]
name = "catalog_completeness"
path = "tests/catalog_completeness.rs"
[[test]]
name = "data_type_surface"
path = "tests/data_type_surface.rs"
[[test]]
name = "frozen_discriminants"
path = "tests/frozen_discriminants.rs"
[[test]]
name = "op_contract_surface"
path = "tests/op_contract_surface.rs"
[[test]]
name = "spec_contract_errors"
path = "tests/spec_contract_errors.rs"
[[test]]
name = "test_descriptor_surface"
path = "tests/test_descriptor_surface.rs"
[dependencies.serde]
version = "=1.0.228"
features = [
"derive",
"rc",
]
[dependencies.smallvec]
version = "=1.14.0"
features = ["serde"]
[dev-dependencies.serde_json]
version = "=1.0.149"
[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"