[package]
edition = "2024"
rust-version = "1.85"
name = "virtio-accel"
version = "0.1.0"
build = false
include = [
"/Cargo.toml",
"/README.md",
"/SECURITY.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/src/**",
"/examples/**",
"/tests/**",
"/docs/**",
"/conformance/v1.0/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable Rust foundations for a virtio accelerator device"
homepage = "https://github.com/MicroPerceptron/virtio-accel"
readme = "README.md"
keywords = [
"virtio",
"accelerator",
"npu",
"no-std",
"protocol",
]
categories = [
"no-std",
"hardware-support",
"virtualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MicroPerceptron/virtio-accel"
[lib]
name = "virtio_accel"
path = "src/lib.rs"
[[example]]
name = "backend_conformance"
path = "examples/backend_conformance.rs"
[[example]]
name = "reference_execution"
path = "examples/reference_execution.rs"
[[test]]
name = "cleanroom_vectors"
path = "tests/cleanroom_vectors.rs"
[[test]]
name = "device_decoder"
path = "tests/device_decoder.rs"
[[test]]
name = "device_frame"
path = "tests/device_frame.rs"
[[test]]
name = "performance_budgets"
path = "tests/performance_budgets.rs"
[[test]]
name = "portable_end_to_end"
path = "tests/portable_end_to_end.rs"
[[test]]
name = "semantic_manifest"
path = "tests/semantic_manifest.rs"
[[test]]
name = "wire_abi_conformance"
path = "tests/wire_abi_conformance.rs"
[dependencies.virtio-accel-core]
version = "0.1.0"
[dependencies.virtio-accel-device]
version = "0.1.0"
[dependencies.virtio-accel-guest]
version = "0.1.0"
[dependencies.virtio-accel-proto]
version = "0.1.0"
[dependencies.virtio-accel-split-queue]
version = "0.1.0"
[dependencies.virtio-accel-transport]
version = "0.1.0"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.virtio-accel-cleanroom]
version = "0.1.0"
[dev-dependencies.virtio-accel-conformance]
version = "0.1.0"
[dev-dependencies.virtio-accel-mock]
version = "0.1.0"
[dev-dependencies.zerocopy]
version = "0.8.54"
features = ["derive"]
default-features = false