2DGameEngineByRust/examples/sandbox/Cargo.toml
cc 83477a7f64 chore: 初始化项目骨架与学习开发计划
- 搭建 Cargo workspace:engine 库 + sandbox 可执行示例,构建/运行通过
- 加入分阶段学习开发计划(Markdown / CSV / xlsx)
- 配置 .gitignore、README、MIT 许可信息

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 20:32:35 +08:00

12 lines
314 B
TOML

[package]
name = "sandbox"
version = "0.0.1"
description = "测试引擎用的沙盒程序"
edition.workspace = true
license.workspace = true
authors.workspace = true
# 这是一个可执行程序:它依赖 engine 库,用来试验和验证引擎功能
[dependencies]
engine = { path = "../../crates/engine" }