[package]
edition = "2021"
rust-version = "1.85"
name = "vyre"
version = "0.7.2"
authors = ["Santh <64453045+santhreal@users.noreply.github.com>"]
build = false
exclude = ["**/SKILL.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GPU compute intermediate representation with a standard operation library"
homepage = "https://santh.dev"
documentation = "https://docs.rs/vyre"
readme = "README.md"
keywords = [
"gpu",
"gpgpu",
"cuda",
"wgsl",
"spir-v",
]
categories = [
"algorithms",
"compilers",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/vyre"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
cpu-parity = []
cuda = ["dep:vyre-driver-cuda"]
default = []
wgpu = ["dep:vyre-driver-wgpu"]
[lib]
name = "vyre"
path = "src/lib.rs"
[[example]]
name = "vyre_release_surface"
path = "examples/vyre_release_surface.rs"
[[test]]
name = "artifact_workflow"
path = "tests/artifact_workflow.rs"
[[test]]
name = "ir_surface"
path = "tests/ir_surface.rs"
[[test]]
name = "wire_malformed_adversarial"
path = "tests/wire_malformed_adversarial.rs"
[[test]]
name = "wire_v1_round_trip"
path = "tests/wire_v1_round_trip.rs"
[dependencies.vyre-driver]
version = "0.7.2"
[dependencies.vyre-driver-cuda]
version = "0.7.2"
optional = true
[dependencies.vyre-driver-wgpu]
version = "0.7.2"
optional = true
[dependencies.vyre-foundation]
version = "0.7.2"
[dependencies.vyre-megakernel]
version = "0.7.2"
[dependencies.vyre-runtime]
version = "0.7.2"
[dependencies.vyre-spec]
version = "0.7.2"
[dev-dependencies.proptest]
version = "=1.11.0"
[build-dependencies]
[lints.clippy]
bind_instead_of_map = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
comparison_chain = "allow"
derivable_impls = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
double_must_use = "allow"
enum_variant_names = "allow"
erasing_op = "allow"
field_reassign_with_default = "allow"
identity_op = "allow"
if_same_then_else = "allow"
large_enum_variant = "allow"
manual_c_str_literals = "allow"
manual_div_ceil = "allow"
manual_map = "allow"
manual_range_contains = "allow"
manual_slice_size_calculation = "allow"
map_entry = "allow"
map_identity = "allow"
match_like_matches_macro = "allow"
match_single_binding = "allow"
needless_borrow = "allow"
needless_borrows_for_generic_args = "allow"
needless_lifetimes = "allow"
needless_range_loop = "allow"
nonminimal_bool = "allow"
option_map_or_none = "allow"
redundant_closure = "allow"
ref_option = "allow"
result_large_err = "allow"
slow_vector_initialization = "allow"
too_many_arguments = "allow"
unnecessary_lazy_evaluations = "allow"
unnecessary_map_on_constructor = "allow"
vec_init_then_push = "allow"
[lints.rust]
dead_code = "allow"
dropping_copy_types = "allow"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_variables = "allow"
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("external_ifds_engine"))']
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"