[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-driver"
version = "0.4.1"
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"
[[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_stub"
path = "tests/cache_invalidation_stub.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 = "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 = "organization_contracts"
path = "tests/organization_contracts.rs"
[[test]]
name = "routing_registry_surface"
path = "tests/routing_registry_surface.rs"
[dependencies.arc-swap]
version = "1.9.1"
[dependencies.blake3]
version = "=1.8.4"
[dependencies.bytemuck]
version = "=1.25.0"
features = ["derive"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.fs2]
version = "=0.4.3"
[dependencies.inventory]
version = "=0.3.17"
[dependencies.lasso]
version = "0.7.3"
features = ["multi-threaded"]
[dependencies.rustc-hash]
version = "=1.1.0"
[dependencies.serde]
version = "=1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "=1.0.149"
[dependencies.smallvec]
version = "=1.14.0"
features = ["serde"]
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.toml]
version = "=0.8.23"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.vyre-foundation]
version = "0.4.1"
[dependencies.vyre-macros]
version = "0.4.1"
[dependencies.vyre-self-substrate]
version = "0.4.1"
optional = true
[dependencies.vyre-spec]
version = "0.4.1"
[dev-dependencies.tempfile]
version = "=3.27.0"
[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"