[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-driver"
version = "0.6.2"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Driver layer: registry, runtime, pipeline, routing, diagnostics. Substrate-agnostic backend machinery. Part of the vyre GPU compiler."
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-driver"
readme = "README.md"
keywords = [
"gpu",
"compiler",
"runtime",
"registry",
"vyre",
]
categories = [
"compilers",
"hardware-support",
"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 = []
self-substrate-adapters = ["dep:vyre-self-substrate"]
[lib]
name = "vyre_driver"
path = "src/lib.rs"
[[example]]
name = "vyre_driver_release_surface"
path = "examples/vyre_driver_release_surface.rs"
[[test]]
name = "actionable_errors"
path = "tests/actionable_errors.rs"
[[test]]
name = "async_dispatch_always_nonblocking"
path = "tests/async_dispatch_always_nonblocking.rs"
[[test]]
name = "async_dispatch_contract"
path = "tests/async_dispatch_contract.rs"
[[test]]
name = "backend_capability_negotiation"
path = "tests/backend_capability_negotiation.rs"
[[test]]
name = "backend_contract"
path = "tests/backend_contract.rs"
[[test]]
name = "backend_launch_validation"
path = "tests/backend_launch_validation.rs"
[[test]]
name = "backend_trait_compatibility"
path = "tests/backend_trait_compatibility.rs"
[[test]]
name = "backend_validation_defaults"
path = "tests/backend_validation_defaults.rs"
[[test]]
name = "cache_invalidation_default"
path = "tests/cache_invalidation_default.rs"
required-features = ["self-substrate-adapters"]
[[test]]
name = "capability_adversarial"
path = "tests/capability_adversarial.rs"
[[test]]
name = "consumer_boundary"
path = "tests/consumer_boundary.rs"
[[test]]
name = "d_series_integration"
path = "tests/d_series_integration.rs"
[[test]]
name = "device_signature_path"
path = "tests/device_signature_path.rs"
[[test]]
name = "diagnostic_surface"
path = "tests/diagnostic_surface.rs"
[[test]]
name = "dispatch_config_surface"
path = "tests/dispatch_config_surface.rs"
[[test]]
name = "driver_lifecycle_e2e"
path = "tests/driver_lifecycle_e2e.rs"
[[test]]
name = "duplicate_op_id"
path = "tests/duplicate_op_id.rs"
[[test]]
name = "error_code_catalog"
path = "tests/error_code_catalog.rs"
[[test]]
name = "error_code_frozen"
path = "tests/error_code_frozen.rs"
[[test]]
name = "gap_duplicate_op_id"
path = "tests/gap_duplicate_op_id.rs"
[[test]]
name = "gap_error_code_catalog"
path = "tests/gap_error_code_catalog.rs"
[[test]]
name = "organization_contracts"
path = "tests/organization_contracts.rs"
[[test]]
name = "routing_registry_surface"
path = "tests/routing_registry_surface.rs"
[[test]]
name = "sweep_dispatch_shape_oracle_matrix"
path = "tests/sweep_dispatch_shape_oracle_matrix.rs"
[[test]]
name = "sweep_numeric_oracle_matrix"
path = "tests/sweep_numeric_oracle_matrix.rs"
[dependencies.arc-swap]
version = "=1.9.1"
[dependencies.blake3]
version = "=1.8.5"
[dependencies.bytemuck]
version = "=1.25.0"
features = ["derive"]
[dependencies.dashmap]
version = "=6.2.1"
[dependencies.fs2]
version = "=0.4.3"
[dependencies.inventory]
version = "=0.3.24"
[dependencies.lasso]
version = "=0.7.3"
features = ["multi-threaded"]
[dependencies.rustc-hash]
version = "=2.1.2"
[dependencies.serde]
version = "=1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.smallvec]
version = "^1.15.1"
features = ["serde"]
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.toml]
version = "=1.1.2"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.vyre-foundation]
version = "0.6.2"
[dependencies.vyre-macros]
version = "0.6.2"
[dependencies.vyre-self-substrate]
version = "0.6.2"
optional = true
[dependencies.vyre-spec]
version = "0.6.2"
[dev-dependencies.tempfile]
version = "=3.27.0"
[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"
dropping_copy_types = "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"
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.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"