ソースを参照

lib: prepare for release version 0.4.0

Remove unintended new line after document comments

Signed-off-by: Zhouqi Jiang <luojia@hust.edu.cn>
Zhouqi Jiang 5 ヶ月 前
コミット
3370a9b636
3 ファイル変更1 行追加3 行削除
  1. 1 1
      Cargo.toml
  2. 0 1
      src/nacl.rs
  3. 0 1
      src/sta.rs

+ 1 - 1
Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "rustsbi"
 description = "Minimal RISC-V's SBI implementation library in Rust"
-version = "0.4.0-alpha.3"
+version = "0.4.0"
 authors = [
     "Luo Jia <me@luojia.cc>",
     "Campbell He <hkp18@mails.tsinghua.edu.cn>",

+ 0 - 1
src/nacl.rs

@@ -22,7 +22,6 @@ use spec::{
 /// *NOTE:* The M-mode firmware should not implement the SBI nested acceleration
 /// extension if the underlying platform has the RISC-V H-extension implemented
 /// in hardware.
-
 pub trait Nacl {
     /// Probe nested acceleration feature.
     ///

+ 0 - 1
src/sta.rs

@@ -13,7 +13,6 @@ use sbi_spec::binary::{SbiRet, SharedPtr};
 /// as steal-time accounting. The Steal-time Accounting (STA) extension defines the
 /// mechanism in which an SBI implementation provides steal-time and preemption
 /// information, for each virtual hart, to supervisor-mode software.
-
 pub trait Sta {
     /// Set Steal-time Shared Memory Address.
     ///