axvisor_api 0.3.0

Basic API for components of the Hypervisor on ArceOS
Documentation
[workspace]
resolver = "2"
members = ["axvisor_api_proc"]

[workspace.package]
authors = ["Su Mingxian <aarkegz@gmail.com>"]
edition = "2024"
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0" # MulanPubL2 is not included in SPDX
repository = "https://github.com/arceos-hypervisor/axvisor_api"

[package]
name = "axvisor_api"
version = "0.3.0"
description = "Basic API for components of the Hypervisor on ArceOS"
documentation = "https://docs.rs/axvisor_api"
readme = "README.md"
keywords = ["axvisor", "api", "embedded", "hypervisor"]
categories = ["embedded", "no-std"]
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
# === Core Components ===
# Procedural macro definitions
axvisor_api_proc = { path = "axvisor_api_proc", version = "0.3.0"}

# === Third-party Libraries ===
# Address space abstraction
axaddrspace = "0.3"
# Interface definition tools
crate_interface = "0.3"
# Physical/virtual address types
memory_addr = "0.4"
# CPU mask
cpumask = "0.1.0"


[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = [
    "x86_64-unknown-linux-gnu",
    "x86_64-unknown-none",
    "riscv64gc-unknown-none-elf",
    "aarch64-unknown-none-softfloat",
]