[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-driver-reference"
version = "0.6.3"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cpu-ref VyreBackend adapter over the pure Rust vyre-reference interpreter."
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-driver-reference"
readme = "README.md"
keywords = [
"cpu",
"reference",
"backend",
"vyre",
]
categories = [
"algorithms",
"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",
]
[lib]
name = "vyre_driver_reference"
path = "src/lib.rs"
[[example]]
name = "vyre_driver_reference_release_surface"
path = "examples/vyre_driver_reference_release_surface.rs"
[[test]]
name = "backend_registration"
path = "tests/backend_registration.rs"
[[test]]
name = "generated_boundary_matrix"
path = "tests/generated_boundary_matrix.rs"
[[test]]
name = "parity_suite"
path = "tests/parity_suite.rs"
[dependencies.inventory]
version = "=0.3.24"
[dependencies.vyre-driver]
version = "0.6.3"
[dependencies.vyre-foundation]
version = "0.6.3"
[dependencies.vyre-reference]
version = "0.6.3"
[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"