summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-09-20 16:24:57 +0800
committer魏曹先生 <1992414357@qq.com>2025-09-20 16:24:57 +0800
commitdd679c9f0cd0b936a9e3e480400097cd5115f499 (patch)
tree162929b96c6381088e5bcc015b210d9f357564cf /Cargo.toml
parenta6e27e265ba8c63f6707ab12b1e09c9a977e107c (diff)
Update Cargo.toml 1. Rename feature `default` to `all` 2. Add feature
`tcp_connection`, `string_proc`, `env` 3. Add crates `string_proc`, `env` to workspace 4. Removed crate `member_verify`
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 12 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 59d911b..405ace1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,11 +3,14 @@ name = "just_enough_vcs"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE-MIT.md"
-authors = [ "Weicao-CatilGrass (GitHub)" ]
+authors = ["Weicao-CatilGrass (GitHub)"]
[features]
-default = ["cfg_file"]
+all = ["cfg_file", "tcp_connection", "string_proc", "env"]
cfg_file = []
+tcp_connection = []
+string_proc = []
+env = []
[workspace]
members = [
@@ -18,7 +21,9 @@ members = [
"crates/utils/tcp_connection",
"crates/utils/tcp_connection/tcp_connection_test",
- "crates/utils/member_verify",
+ "crates/utils/string_proc",
+
+ "crates/env",
]
[workspace.package]
@@ -45,3 +50,7 @@ strip = "symbols"
[dependencies]
cfg_file = { path = "crates/utils/cfg_file" }
+tcp_connection = { path = "crates/utils/tcp_connection" }
+string_proc = { path = "crates/utils/string_proc" }
+
+env = { path = "crates/env" }