Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "axvcpu"
authors = ["aarkegz <aarkegz@gmail.com>"]
version = "0.2.1"
version = "0.3.0"
edition = "2024"
categories = ["virtualization", "no-std"]
description = "Virtual CPU abstraction for ArceOS hypervisor"
Expand All @@ -10,8 +10,8 @@ keywords = ["vcpu", "hypervisor", "arceos"]
license = "Apache-2.0"

[dependencies]
axerrno = "0.1.0"
axerrno = "0.2"
memory_addr = "0.4"
percpu = "0.2.0"
axaddrspace = "0.1.4"
axvisor_api = "0.1"
axaddrspace = "0.3"
axvisor_api = "0.3"
46 changes: 0 additions & 46 deletions src/hal.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,12 @@ extern crate alloc;
// Core modules
mod arch_vcpu; // Architecture-specific VCpu trait definition
mod exit; // VM exit reason enumeration and handling
mod hal; // Hardware abstraction layer interfaces
mod percpu; // Per-CPU virtualization state management
mod test; // Unit tests for VCpu functionality
mod vcpu; // Main VCpu implementation and state management

// Public API exports
pub use arch_vcpu::AxArchVCpu; // Architecture-specific VCpu trait
pub use exit::AxVCpuExitReason;
pub use hal::AxVCpuHal; // Hardware abstraction layer trait
pub use percpu::*; // Per-CPU state management types
pub use vcpu::*; // Main VCpu types and functions // VM exit reasons