forked from YdrMaster/rCore-Tutorial-in-single-workspace
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "tg-rcore-tutorial"
version = "0.4.6-preview.2"
edition = "2024"
authors = ["YdrMaster <ydrml@hotmail.com>", "Yifan Wang <w-yf22@mails.tsinghua.edu.cn>", "Yu Chen <yuchen@tsinghua.edu.cn>"]
description = "Meta crate bundle for rCore Tutorial workspace - contains all chapters and components"
keywords = ["rcore", "os", "riscv", "tutorial", "no-std"]
categories = ["no-std", "embedded"]
license = "GPL-3.0"
repository = "https://github.com/rcore-os/tg-rcore-tutorial"
homepage = "https://github.com/rcore-os/tg-rcore-tutorial"
documentation = "https://docs.rs/tg-rcore-tutorial"
readme = "README.md"
# Include only necessary files for distribution
include = [
"Cargo.toml",
"README.md",
"LICENSE",
".gitignore",
".gitmodules",
"src/**",
"bundle/submodules.tar.gz",
"scripts/compress_submodules.sh",
"scripts/extract_submodules.sh",
"scripts/crates.txt",
]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"