init: add rust console app and submodule

This commit is contained in:
chuan
2026-04-20 21:58:10 +08:00
Unverified
commit 2c2b12a710
5 changed files with 22 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
[submodule ".externals/awesome-design-md"]
path = .externals/awesome-design-md
url = https://git.pchuan.top/chuan/awesome-design-md
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "design"
version = "0.1.0"
edition = "2024"
[dependencies]
+9
View File
@@ -0,0 +1,9 @@
# design
一个最基础的 Rust 控制台程序仓库。
## 运行
```bash
cargo run
```
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, design!");
}