[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-runtime"
version = "0.6.3"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent megakernel + io_uring zero-copy streaming runtime for vyre - GPU as VIR0 bytecode interpreter"
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-runtime"
readme = "README.md"
keywords = [
"gpu",
"io-uring",
"megakernel",
"nvme",
"vyre",
]
categories = [
"asynchronous",
"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]
c-frontend-adapter = []
default = []
legacy-infallible = []
megakernel-batch = []
remote = ["remote-cache"]
remote-cache = ["ureq"]
self-substrate-adapters = ["dep:vyre-self-substrate"]
subgroup-ops = []
uring-cmd-nvme = []
[lib]
name = "vyre_runtime"
path = "src/lib.rs"
[[example]]
name = "vyre_runtime_release_surface"
path = "examples/vyre_runtime_release_surface.rs"
[[test]]
name = "adversarial_disk"
path = "tests/adversarial_disk.rs"
[[test]]
name = "cache_eviction_proptest"
path = "tests/cache_eviction_proptest.rs"
[[test]]
name = "concurrency_invariants"
path = "tests/concurrency_invariants.rs"
[[test]]
name = "fingerprint_cross_host"
path = "tests/fingerprint_cross_host.rs"
[[test]]
name = "megakernel_adversarial_buffers"
path = "tests/megakernel_adversarial_buffers.rs"
[[test]]
name = "megakernel_adversarial_metrics"
path = "tests/megakernel_adversarial_metrics.rs"
[[test]]
name = "megakernel_adversarial_overflow"
path = "tests/megakernel_adversarial_overflow.rs"
[[test]]
name = "megakernel_adversarial_packing"
path = "tests/megakernel_adversarial_packing.rs"
[[test]]
name = "megakernel_allocation_bounds"
path = "tests/megakernel_allocation_bounds.rs"
[[test]]
name = "megakernel_async_observability"
path = "tests/megakernel_async_observability.rs"
[[test]]
name = "megakernel_core_contracts"
path = "tests/megakernel_core_contracts.rs"
[[test]]
name = "megakernel_cpu_fallback_wording"
path = "tests/megakernel_cpu_fallback_wording.rs"
[[test]]
name = "megakernel_duplicate_packing"
path = "tests/megakernel_duplicate_packing.rs"
[[test]]
name = "megakernel_host_protocol_contracts"
path = "tests/megakernel_host_protocol_contracts.rs"
[[test]]
name = "megakernel_io_public_errors"
path = "tests/megakernel_io_public_errors.rs"
[[test]]
name = "megakernel_overflow_boundaries"
path = "tests/megakernel_overflow_boundaries.rs"
[[test]]
name = "megakernel_protocol_boundary"
path = "tests/megakernel_protocol_boundary.rs"
[[test]]
name = "megakernel_protocol_edge_cases"
path = "tests/megakernel_protocol_edge_cases.rs"
[[test]]
name = "megakernel_protocol_layout_contracts"
path = "tests/megakernel_protocol_layout_contracts.rs"
[[test]]
name = "megakernel_protocol_strict_contracts"
path = "tests/megakernel_protocol_strict_contracts.rs"
[[test]]
name = "megakernel_rule_catalog_scratch"
path = "tests/megakernel_rule_catalog_scratch.rs"
[[test]]
name = "megakernel_runtime_organization"
path = "tests/megakernel_runtime_organization.rs"
[[test]]
name = "megakernel_scheduler_fairness"
path = "tests/megakernel_scheduler_fairness.rs"
[[test]]
name = "megakernel_sketch_telemetry"
path = "tests/megakernel_sketch_telemetry.rs"
[[test]]
name = "multi_tenant_scheduler"
path = "tests/multi_tenant_scheduler.rs"
[[test]]
name = "pipeline_fingerprint_surface"
path = "tests/pipeline_fingerprint_surface.rs"
[[test]]
name = "routing_policy"
path = "tests/routing_policy.rs"
[[test]]
name = "scheduler_model_proptest"
path = "tests/scheduler_model_proptest.rs"
[[test]]
name = "socket_ingest"
path = "tests/socket_ingest.rs"
[[test]]
name = "sweep_ring_buffer_oracle_matrix"
path = "tests/sweep_ring_buffer_oracle_matrix.rs"
[[test]]
name = "sweep_tenant_policy_oracle_matrix"
path = "tests/sweep_tenant_policy_oracle_matrix.rs"
[[test]]
name = "uring_ingest_telemetry_invariants"
path = "tests/uring_ingest_telemetry_invariants.rs"
[[test]]
name = "uring_io_loop_contracts"
path = "tests/uring_io_loop_contracts.rs"
[[test]]
name = "uring_smoke"
path = "tests/uring_smoke.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.rustc-hash]
version = "=2.1.2"
[dependencies.smallvec]
version = "^1.15.1"
features = ["serde"]
[dependencies.thiserror]
version = "=2.0.18"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.ureq]
version = "=3.3.0"
optional = true
[dependencies.vyre-driver]
version = "0.6.3"
[dependencies.vyre-foundation]
version = "0.6.3"
[dependencies.vyre-self-substrate]
version = "0.6.3"
optional = true
[dev-dependencies.criterion]
version = "=0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "=1.11.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "=0.2.186"
default-features = false
[target.'cfg(target_os = "linux")'.dev-dependencies.libc]
version = "=0.2.186"
default-features = false
[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"