diff --git a/Cargo.lock b/Cargo.lock index df71ec34c..1de11f74f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1680,16 +1680,21 @@ dependencies = [ [[package]] name = "sbi-rt" -version = "0.1.0" -source = "git+https://github.com/rustsbi/sbi-rt.git?rev=2933f8d#2933f8d5542058a8d6435e59a90b0ad74e0c42f6" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07f27f053b4d773f8027cd703baed9764f730a058006da4947522394515afe8c" dependencies = [ "sbi-spec", ] [[package]] name = "sbi-spec" -version = "0.1.0" -source = "git+https://github.com/rustsbi/sbi-spec.git?rev=a0fd76b#a0fd76bc5e74ad978d1d07d8f064ca45fa14dd9c" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab331a5c9852a6587ea9fc74bdda950d7dfc7076aa791434d45cbc2001ba5c7c" +dependencies = [ + "static_assertions", +] [[package]] name = "scopeguard" diff --git a/kernel-hal/Cargo.toml b/kernel-hal/Cargo.toml index dee4cf848..be054eff1 100644 --- a/kernel-hal/Cargo.toml +++ b/kernel-hal/Cargo.toml @@ -69,7 +69,7 @@ executor = { git = "https://github.com/DeathWish5/PreemptiveScheduler", rev = "e # For riscv [target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies] riscv = "0.9" -sbi-rt = { git = "https://github.com/rustsbi/sbi-rt.git", rev = "2933f8d" } +sbi-rt = "0.0.1" # For x86_64 [target.'cfg(target_arch = "x86_64")'.dependencies] diff --git a/zCore/Cargo.toml b/zCore/Cargo.toml index 7d3adb533..4a52cfe37 100644 --- a/zCore/Cargo.toml +++ b/zCore/Cargo.toml @@ -85,7 +85,7 @@ r0 = "1" riscv = "0.9" dtb-walker = "=0.2.0-alpha.3" page-table = "0.0.6" -sbi-rt = { git = "https://github.com/rustsbi/sbi-rt.git", rev = "2933f8d" } +sbi-rt = "0.0.1" # Bare-metal mode on x86_64 [target.'cfg(all(target_os = "none", target_arch = "x86_64"))'.dependencies]