summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-11 17:38:08 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-11 17:38:08 +0800
commit4effbd209edf96637d7da2b7d29ea1a6de3c637a (patch)
tree397223a02b80b858ceb41af0126d0c9e731f2047 /Cargo.lock
parent794316c6e925097ef6b87693b4a610b4563309e6 (diff)
Add config system and space macro with workspace dependencies
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock15
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d349d5c..0a45ec3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -397,6 +397,10 @@ name = "config_system"
version = "0.1.0"
dependencies = [
"serde",
+ "serde_json",
+ "serde_yaml",
+ "thiserror",
+ "toml",
]
[[package]]
@@ -700,6 +704,7 @@ name = "framework"
version = "0.1.0"
dependencies = [
"just_fmt",
+ "space_macro",
"thiserror",
"tokio",
]
@@ -1806,6 +1811,16 @@ dependencies = [
]
[[package]]
+name = "space_macro"
+version = "0.1.0"
+dependencies = [
+ "just_fmt",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"