From da62726f7d8147c41a1d00cb6887b416fff10a47 Mon Sep 17 00:00:00 2001 From: Josen-B Date: Mon, 9 Feb 2026 09:52:13 +0000 Subject: [PATCH] chore: update package version and dependencies in Cargo.toml --- Cargo.toml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bfdb17e..7d35cec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "axdevice" -version = "0.1.0" +version = "0.2.1" description = "A reusable, OS-agnostic device abstraction layer designed for virtual machines." homepage = "https://github.com/arceos-hypervisor/axdevice" repository = "https://github.com/arceos-hypervisor/axdevice" keywords = ["hypervisor"] -license = "MIT OR Apache-2.0" +license = "Apache-2.0" authors = ["aarkegz "] documentation = "https://docs.rs/axdevice" categories = ["virtualization"] @@ -23,23 +23,20 @@ spin = "0.9" axerrno = "0.1.0" memory_addr = "0.4" -axvmconfig = { version = "0.1", default-features = false } -axaddrspace = "0.1" -axdevice_base = "0.1" +axvmconfig = { version = "0.2", default-features = false } +axaddrspace = "0.1.4" +axdevice_base = "0.2.1" range-alloc-arceos = "0.1.4-pre.1" [target.'cfg(target_arch = "aarch64")'.dependencies] -arm_vgic = { version = "0.1", features = ["vgicv3"] } +arm_vgic = { version = "0.2.1", features = ["vgicv3"] } [target.'cfg(target_arch = "riscv64")'.dependencies] -riscv_vplic = { git = "https://github.com/arceos-hypervisor/riscv_vplic.git", rev = "8bc5213" } +riscv_vplic = "0.2.1" [dev-dependencies] -axdevice_base = "0.1" -axaddrspace = "0.1" +axdevice_base = "0.2.1" +axaddrspace = "0.1.4" memory_addr = "0.4" axerrno = "0.1" -axvmconfig = "0.1" - -[patch.crates-io] -axvmconfig = { git = "https://github.com/arceos-hypervisor/axvmconfig.git", branch = "next" } \ No newline at end of file +axvmconfig = "0.2" \ No newline at end of file