summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-18 00:34:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-18 00:34:10 +0800
commit7ea51858189338cbda1a21dc5724d1a8ce3aedb9 (patch)
tree9af8c19b6fa93446a8f95aebebf21690cb6c114c /Cargo.toml
parente342a7f522a236991ba9fa6d8a1daa22465ec217 (diff)
feat: add test sandbox helper and enable tokio multi-thread runtime
Replace `copy_with_temp_rename` module with `test_sandbox` providing automatic cleanup of test directories. Add `rt`, `rt-multi-thread`, and `macros` tokio features.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 11ce5f3..50d91d8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -28,5 +28,8 @@ rola-draft = { path = "rola-draft" }
[workspace.dependencies.tokio]
version = "1.52.3"
features = [
- "fs"
+ "fs",
+ "rt",
+ "rt-multi-thread",
+ "macros"
]