18 lines
382 B
TOML
18 lines
382 B
TOML
# 当前阶段先建立虚拟 workspace。
|
|
# 后续按“主工程 crate + 独立模块 crate”模式逐项补充 members。
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/api-server",
|
|
"crates/module-auth",
|
|
"crates/platform-oss",
|
|
"crates/platform-auth",
|
|
"crates/shared-logging",
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
version = "0.1.0"
|
|
license = "UNLICENSED"
|