Skip to content
Draft
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
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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-arceos = "0.1.4-pre.1"

[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"]}
2 changes: 1 addition & 1 deletion src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use alloc::sync::Arc;
use alloc::vec::Vec;
use core::ops::Range;

use range_alloc::RangeAllocator;
use range_alloc_arceos::RangeAllocator;
use spin::Mutex;

use axaddrspace::{
Expand Down
Loading