summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-05 22:35:05 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-05 22:35:05 +0800
commit27f6414ad1ff451feb0044af62f37dc2a6255ffa (patch)
treecb5693bc014cc8579dcf02a730fd4d2a5dfcf1a5 /Cargo.toml
parentade2fcb9302a4ab759795820dbde3b2b269490ee (diff)
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
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml18
1 files changed, 8 insertions, 10 deletions
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" }