diff --git a/Cargo.toml b/Cargo.toml index 4c91c34..c238e4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,23 +1,23 @@ [package] +edition = "2024" name = "axdevice" version = "0.1.0" -edition = "2024" [features] [dependencies] -log = "0.4" cfg-if = "1.0" +log = "0.4" spin = "0.9" # System independent crates provided by ArceOS. axerrno = "0.1.0" memory_addr = "0.4" -axvmconfig = { version = "0.1", default-features = false } -axaddrspace = "0.1" +axaddrspace = "0.2" axdevice_base = "0.1" -range-alloc = { git = "https://github.com/arceos-hypervisor/range-alloc.git" } +axvmconfig = {version = "0.1", default-features = false} +range-alloc = {git = "https://github.com/arceos-hypervisor/range-alloc.git"} [target.'cfg(target_arch = "aarch64")'.dependencies] -arm_vgic = { git = "https://github.com/arceos-hypervisor/arm_vgic.git", features = ["vgicv3"] } +arm_vgic = {version = "0.1", features = ["vgicv3"]}