[package]
edition = "2021"
rust-version = "1.85"
name = "vyre"
version = "0.4.1"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GPU compute intermediate representation with a standard operation library"
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre"
readme = "README.md"
keywords = [
"gpu",
"ir",
"compute",
"wgsl",
"conformance",
]
categories = [
"algorithms",
"compilers",
"hardware-support",
]
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 = []
[lib]
name = "vyre"
path = "src/lib.rs"
[[test]]
name = "dependency_boundary"
path = "tests/dependency_boundary.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"
[[test]]
name = "wire_v1_round_trip"
path = "tests/wire_v1_round_trip.rs"
[dependencies.blake3]
version = "=1.8.4"
[dependencies.vyre-driver]
version = "0.4.1"
[dependencies.vyre-foundation]
version = "0.4.1"
[dependencies.vyre-lower]
version = "0.4.1"
[dev-dependencies.toml]
version = "=0.8.23"
[build-dependencies]
[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"