From 27f6414ad1ff451feb0044af62f37dc2a6255ffa Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 5 Feb 2026 22:35:05 +0800 Subject: Remove examples and legacy code, update .gitignore - Delete examples directory and its example action system - Rename actions/ to legacy_actions/ and data/ to legacy_data/ - Update Cargo.toml license file reference - Move setup scripts to scripts/dev/ directory - Add todo.txt patterns to .gitignore --- Cargo.toml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index be67728..f0274c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "just_enough_vcs" edition = "2024" -license-file = "LICENSE-MIT.md" +license-file = "LICENSE-MIT" authors = ["Weicao-CatilGrass (GitHub)"] [features] @@ -11,19 +11,17 @@ all = [ "sha1_hash", "tcp_connection", "string_proc", - "vcs", + "lib", ] cfg_file = [] data_struct = [] sha1_hash = [] tcp_connection = [] string_proc = [] -vcs = [] +lib = [] [workspace] members = [ - "examples", - "utils/cfg_file", "utils/cfg_file/cfg_file_derive", "utils/cfg_file/cfg_file_test", @@ -40,10 +38,10 @@ members = [ "systems/action", "systems/action/action_macros", - "data", - "data/tests", + "legacy_data", + "legacy_data/tests", - "actions", + "legacy_actions", "docs", ] @@ -84,5 +82,5 @@ string_proc = { path = "utils/string_proc" } action_system = { path = "systems/action" } vcs_docs = { path = "docs" } -vcs_data = { path = "data" } -vcs_actions = { path = "actions" } +vcs_data = { path = "legacy_data" } +vcs_actions = { path = "legacy_actions" } -- cgit