Browse Source

Small fix

luojia65 4 years ago
parent
commit
d1f8967a49
3 changed files with 4 additions and 3 deletions
  1. 1 0
      CHANGELOG.md
  2. 2 2
      README.md
  3. 1 1
      rustsbi/Cargo.toml

+ 1 - 0
CHANGELOG.md

@@ -16,6 +16,7 @@ RustSBI is adapted to SBI standard with implementation number 4.
 ### Fixed
 - Delegate instruction load/store faults to S mode, allowing legacy console getchar to work on K210 (#7).
 - Fixed 64-bit and 32-bit instruction value for target pointer widths
+- Fixed readme document path for crates.io
 
 ## [0.0.2] - 2020-10-20
 ### Added

+ 2 - 2
README.md

@@ -1,9 +1,9 @@
+[![crates.io](https://img.shields.io/crates/v/rustsbi.svg)](https://crates.io/crates/rustsbi)
+
 # RustSBI
 
 RISC-V Supervisor Binary Interface implementation in Rust; runs on M-mode.
 
-[![crates.io](https://img.shields.io/crates/v/rustsbi.svg)](https://crates.io/crates/rustsbi)
-
 ## Binary downloads
 
 See [releases](https://github.com/luojia65/rustsbi/releases).

+ 1 - 1
rustsbi/Cargo.toml

@@ -5,7 +5,7 @@ version = "0.1.0"
 authors = ["luojia65 <[email protected]>"]
 repository = "https://github.com/luojia65/rustsbi"
 documentation = "https://docs.rs/rustsbi"
-license = "MIT OR MulanPSL-2.0"
+license = "MIT" # OR MulanPSL-2.0"
 readme = "../README.md"
 keywords = ["riscv", "sbi", "rustsbi"]
 categories = ["os", "embedded", "hardware-support", "no-std"]