- 搭建 Cargo workspace:engine 库 + sandbox 可执行示例,构建/运行通过 - 加入分阶段学习开发计划(Markdown / CSV / xlsx) - 配置 .gitignore、README、MIT 许可信息 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
25 lines
392 B
Plaintext
25 lines
392 B
Plaintext
# Rust / Cargo 构建产物
|
||
/target/
|
||
**/target/
|
||
|
||
# Cargo.lock:库不提交,但本项目含可执行程序,建议提交以锁定依赖版本(保留)
|
||
# 若日后纯做库可改为忽略
|
||
|
||
# 编辑器 / IDE
|
||
.vscode/
|
||
.idea/
|
||
*.iml
|
||
|
||
# 操作系统
|
||
.DS_Store
|
||
Thumbs.db
|
||
desktop.ini
|
||
|
||
# Office 临时/锁文件(Excel/Word 打开文档时生成)
|
||
~$*
|
||
|
||
# 调试与临时文件
|
||
*.pdb
|
||
*.log
|
||
*~
|