diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c8b9c..61d9a21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Update rustsbi to version 0.4.0-alpha.1 - Update sbi-spec to version 0.0.7 - Update sbi-rt to version 0.0.3 -- Update sbi-testing to version 0.0.1 +- Update sbi-testing to version 0.0.3-alpha.2 - Use crate *fast-trap* version 0.0.1 in rustsbi-qemu for trap handling - Use crate *rcore-console* version 0.0.0 in rustsbi-qemu and test-kernel for `print!` and `println!` - Use crate *aclint* version 0.0.0 in rustsbi-qemu for aclint structs diff --git a/Cargo.lock b/Cargo.lock index 74925c7..3650602 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,6 +298,7 @@ dependencies = [ "rcore-console", "riscv 0.10.1", "rustsbi", + "sbi-spec", "sifive-test-device", "spin", "uart16550", @@ -320,11 +321,12 @@ checksum = "e6e36312fb5ddc10d08ecdc65187402baba4ac34585cb9d1b78522ae2358d890" [[package]] name = "sbi-testing" -version = "0.0.3-rc.0" -source = "git+https://github.com/rustsbi/sbi-testing?rev=3b0089#3b0089d073b2ff43d986f01807cd2759aee90ec7" +version = "0.0.3-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135c0f1ce07ede77a7e1c3daff35d20d37b54fd1037ac02ab9595c231518531e" dependencies = [ "log", - "riscv 0.10.1", + "riscv 0.11.0", "sbi-rt", "sbi-spec", ] diff --git a/test-kernel/Cargo.toml b/test-kernel/Cargo.toml index 4d014c9..a9fb218 100644 --- a/test-kernel/Cargo.toml +++ b/test-kernel/Cargo.toml @@ -8,9 +8,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sbi-testing = { git = "https://github.com/rustsbi/sbi-testing", rev = "3b0089", features = [ - "log", -] } +sbi-testing = { version = "0.0.3-alpha.2", features = ["log"] } log = "0.4" riscv = "0.10.1" spin = "0.9"