diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-11 17:38:08 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-11 17:38:08 +0800 |
| commit | 4effbd209edf96637d7da2b7d29ea1a6de3c637a (patch) | |
| tree | 397223a02b80b858ceb41af0126d0c9e731f2047 /Cargo.toml | |
| parent | 794316c6e925097ef6b87693b4a610b4563309e6 (diff) | |
Add config system and space macro with workspace dependencies
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 18 insertions, 5 deletions
@@ -28,9 +28,11 @@ members = [ "systems/_asset", "systems/_asset/macros", "systems/_asset/test", + "systems/_config", "systems/_constants", "systems/_constants/macros", "systems/_framework", + "systems/_framework/space_macro", "systems/sheet", "systems/sheet/macros", "systems/vault", @@ -50,7 +52,6 @@ members = [ "legacy_utils/cfg_file", "legacy_utils/cfg_file/cfg_file_derive", "legacy_utils/cfg_file/cfg_file_test", - "systems/_config", # LEGACY AREA ] @@ -58,15 +59,27 @@ members = [ version = "0.1.0" [workspace.dependencies] -just_fmt = "0.1.2" +# Macro & code gen proc-macro2 = "1.0" quote = "1.0" -regex = "1.12" -serde = { version = "1", features = ["derive"] } syn = { version = "2.0", features = ["full", "extra-traits"] } -thiserror = "2" + +# Serialization +serde = { version = "1", features = ["derive"] } +serde_json = "1" +serde_yaml = "0.9" +toml = "0.9" + +# Text processing +just_fmt = "0.1.2" +regex = "1.12" + +# Async runtime tokio = { version = "1.50", features = ["full"] } +# Error handling +thiserror = "2" + [profile.dev] opt-level = 0 debug = true |
