浏览代码

lib: project structure for rustsbi-prototyper package

Signed-off-by: Zhouqi Jiang <luojia@hust.edu.cn>
Zhouqi Jiang 11 月之前
父节点
当前提交
8a245e4890
共有 3 个文件被更改,包括 30 次插入6 次删除
  1. 10 1
      Cargo.lock
  2. 16 2
      Cargo.toml
  3. 4 3
      src/main.rs

+ 10 - 1
Cargo.lock

@@ -2,9 +2,18 @@
 # It is not intended for manual editing.
 version = 3
 
+[[package]]
+name = "panic-halt"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de96540e0ebde571dc55c73d60ef407c653844e6f9a1e2fdbd40c07b9252d812"
+
 [[package]]
 name = "rustsbi-prototyper"
-version = "0.1.0"
+version = "0.0.0"
+dependencies = [
+ "panic-halt",
+]
 
 [[package]]
 name = "xtask"

+ 16 - 2
Cargo.toml

@@ -1,9 +1,23 @@
+cargo-features = ["per-package-target"]
+
 [package]
 name = "rustsbi-prototyper"
-version = "0.1.0"
-edition = "2021"
+version = "0.0.0"
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
+forced-target = "riscv64imac-unknown-none-elf"
 
 [dependencies]
+panic-halt = "0.2.0"
 
 [workspace]
 members = ["xtask"]
+
+[workspace.package]
+edition = "2021"
+license = "MulanPSL-2.0 OR MIT"
+repository = "https://github.com/rustsbi/prototyper"
+
+[profile.release]
+debug = true

+ 4 - 3
src/main.rs

@@ -1,3 +1,4 @@
-fn main() {
-    println!("Hello, world!");
-}
+#![no_std]
+#![no_main]
+
+use panic_halt as _;