Skip to content

Latest commit

 

History

History
69 lines (52 loc) · 2.02 KB

dev.md

File metadata and controls

69 lines (52 loc) · 2.02 KB

development:

Project Structure:

  • 使用 monorepo, 参考 rust 官方 cargo 目录结构, 组织代码.
  • 详细内容见每个子目录的 readme.md
-> % tree ./crates -L 2
./crates
├── basic
│   ├── Cargo.toml
│   └── src
├── rs-cli            // 使用 rust 写的工具脚本
│   ├── Cargo.toml
│   └── src
├── rust-by-example       // rust 官方学习教程 // 练习代码
│   ├── Cargo.toml
│   └── src
├── rust-programming-cookbook // 《Rust 语言编程实战》 // 练习代码
│   ├── Cargo.toml
│   └── src
└── rust-programming-in-action // 《Rust编程:入门、实战与进阶》 // 练习代码
    ├── Cargo.toml
    └── src

10 directories, 5 files

Setup development environment:

  • 配置 rust 开发环境
  • 安装 Clion

Clion:

Reference:

Rust 目录规范:

backlog: