[package]
edition = "2021"
rust-version = "1.85"
name = "omea-kernel"
version = "0.1.1"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"kvm-x86_64-build.sh",
"LICENSE-APACHE",
"LICENSE-GPL-2.0",
"LICENSE-MIT",
"NOTICE",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Guest kernel facade for omea-vm: re-exports the x86_64 KVM kernel/init/agent asset crate."
documentation = "https://docs.rs/omea-kernel"
readme = "README.md"
keywords = [
"microvm",
"hypervisor",
"kernel",
"omea",
"oci",
]
categories = [
"virtualization",
"embedded",
"external-ffi-bindings",
]
license = "Apache-2.0 AND GPL-2.0-only AND MIT"
[lib]
name = "omea_kernel"
path = "src/lib.rs"
[target.'cfg(target_arch = "x86_64")'.dependencies.omea-kernel-x86-64]
version = "=0.1.1"
[lints.clippy]
needless_doctest_main = "allow"