浏览代码

Merge #49

49: Update dependencies, bump MSRV r=almindor a=Disasm



Co-authored-by: Vadim Kaushan <admin@disasm.info>
bors[bot] 4 年之前
父节点
当前提交
d13776ad66
共有 5 个文件被更改,包括 10 次插入6 次删除
  1. 1 1
      .travis.yml
  2. 4 0
      CHANGELOG.md
  3. 3 3
      Cargo.toml
  4. 1 1
      README.md
  5. 1 1
      src/lib.rs

+ 1 - 1
.travis.yml

@@ -7,7 +7,7 @@ env:
 rust:
   - nightly
   - stable
-  - 1.30.0 # MSRV
+  - 1.31.0 # MSRV
 
 if: (branch = staging OR branch = trying OR branch = master) OR (type = pull_request AND branch = master)
 

+ 4 - 0
CHANGELOG.md

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+### Changed
+
+- Updated Minimum Supported Rust Version to 1.31.0
+
 ## [v0.5.6] - 2020-03-14
 
 ### Added

+ 3 - 3
Cargo.toml

@@ -9,11 +9,11 @@ keywords = ["riscv", "register", "peripheral"]
 license = "ISC"
 
 [dependencies]
-bare-metal = ">=0.2.0,<0.2.5"
-bit_field = "0.9.0"
+bare-metal = "0.2.5"
+bit_field = "0.10.0"
 
 [build-dependencies]
 riscv-target = "0.1.2"
 
 [features]
-inline-asm = []
+inline-asm = []

+ 1 - 1
README.md

@@ -12,7 +12,7 @@ This project is developed and maintained by the [RISC-V team][team].
 
 ## Minimum Supported Rust Version (MSRV)
 
-This crate is guaranteed to compile on stable Rust 1.30.0 and up. It *might*
+This crate is guaranteed to compile on stable Rust 1.31.0 and up. It *might*
 compile with older versions but that may change in any new patch release.
 
 ## License

+ 1 - 1
src/lib.rs

@@ -2,7 +2,7 @@
 //!
 //! # Minimum Supported Rust Version (MSRV)
 //!
-//! This crate is guaranteed to compile on stable Rust 1.30 and up. It *might*
+//! This crate is guaranteed to compile on stable Rust 1.31 and up. It *might*
 //! compile with older versions but that may change in any new patch release.
 //! Note that `riscv64imac-unknown-none-elf` and `riscv64gc-unknown-none-elf` targets
 //! are not supported on stable yet.