Skip to content

Commit e02751a

Browse files
committed
represent some dependencies using the crates.io version
1 parent b610711 commit e02751a

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,21 @@ page_table_multiarch = "0.5"
2323
percpu = { version = "0.2.0", features = ["arm-el2"] }
2424

2525
# System dependent modules provided by ArceOS-Hypervisor.
26-
axvcpu = { git = "https://github.com/arceos-hypervisor/axvcpu.git" }
27-
axaddrspace = { git = "https://github.com/arceos-hypervisor/axaddrspace.git" }
26+
axvcpu = "0.1"
27+
axaddrspace = "0.1"
2828
axdevice = { git = "https://github.com/arceos-hypervisor/axdevice.git" }
29-
axdevice_base = { git = "https://github.com/arceos-hypervisor/axdevice_crates.git" }
30-
axvmconfig = { git = "https://github.com/arceos-hypervisor/axvmconfig.git", default-features = false }
29+
axdevice_base = "0.1"
30+
axvmconfig = { version = "0.1", default-features = false }
3131

3232
[target.'cfg(target_arch = "x86_64")'.dependencies]
33-
x86_vcpu = { git = "https://github.com/arceos-hypervisor/x86_vcpu.git" }
33+
x86_vcpu = "0.1"
3434

3535
[target.'cfg(target_arch = "riscv64")'.dependencies]
36-
riscv_vcpu = { git = "https://github.com/arceos-hypervisor/riscv_vcpu.git" }
36+
riscv_vcpu = "0.1"
3737

3838
[target.'cfg(target_arch = "aarch64")'.dependencies]
39-
arm_vcpu = { git = "https://github.com/arceos-hypervisor/arm_vcpu.git" }
40-
arm_vgic = { git = "https://github.com/arceos-hypervisor/arm_vgic.git", features = ["vgicv3"] }
39+
arm_vcpu = "0.1"
40+
arm_vgic = { version = "0.1", features = ["vgicv3"] }
4141

42+
[patch.crates-io]
43+
axaddrspace = "0.1"

0 commit comments

Comments
 (0)