diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-06 02:06:53 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-06 02:06:53 +0800 |
| commit | 520925836243b9c3e60f199f11374b3eddbe3fae (patch) | |
| tree | 79856008574ca11dab9c81b577d6633fbbcfad51 /Cargo.toml | |
| parent | 152ce138bf7cb21d9579749afa16ee7c41c80518 (diff) | |
Add constants system with path generation macros
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -38,12 +38,15 @@ members = [ "systems/action", "systems/action/action_macros", + "systems/_constants", + "systems/_constants/macros", + "legacy_data", "legacy_data/tests", "legacy_actions", - "docs", + "docs", "systems/_constants", ] [workspace.package] @@ -73,14 +76,20 @@ chrono = "0.4" toml = "0.9" [dependencies] +# Utils cfg_file = { path = "utils/cfg_file" } data_struct = { path = "utils/data_struct" } sha1_hash = { path = "utils/sha1_hash" } tcp_connection = { path = "utils/tcp_connection" } string_proc = { path = "utils/string_proc" } +# Systems action_system = { path = "systems/action" } +constants = { path = "systems/_constants" } +# Documents vcs_docs = { path = "docs" } + +# Legacy vcs_data = { path = "legacy_data" } vcs_actions = { path = "legacy_actions" } |
