浏览代码

update Cargo.toml

Román Cárdenas 1 年之前
父节点
当前提交
d7b4ae981d
共有 2 个文件被更改,包括 5 次插入3 次删除
  1. 4 3
      riscv-rt/Cargo.toml
  2. 1 0
      riscv/Cargo.toml

+ 4 - 3
riscv-rt/Cargo.toml

@@ -2,20 +2,21 @@
 name = "riscv-rt"
 version = "0.11.0"
 rust-version = "1.59"
-repository = "https://github.com/rust-embedded/riscv-rt"
+repository = "https://github.com/rust-embedded/riscv"
 authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
 categories = ["embedded", "no-std"]
 description = "Minimal runtime / startup for RISC-V CPU's"
+documentation = "https://docs.rs/riscv-rt"
 keywords = ["riscv", "runtime", "startup"]
 license = "ISC"
-edition = "2018"
+edition = "2021"
 
 [features]
 s-mode = []
 single-hart = []
 
 [dependencies]
-riscv = "0.10"
+riscv = {path = "../riscv", version = "0.10"}
 riscv-rt-macros = { path = "macros", version = "0.2.0" }
 
 [dev-dependencies]

+ 1 - 0
riscv/Cargo.toml

@@ -7,6 +7,7 @@ repository = "https://github.com/rust-embedded/riscv"
 authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
 categories = ["embedded", "hardware-support", "no-std"]
 description = "Low level access to RISC-V processors"
+documentation = "https://docs.rs/riscv"
 keywords = ["riscv", "register", "peripheral"]
 license = "ISC"