diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-18 00:34:10 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-18 00:34:10 +0800 |
| commit | 7ea51858189338cbda1a21dc5724d1a8ce3aedb9 (patch) | |
| tree | 9af8c19b6fa93446a8f95aebebf21690cb6c114c /rola-utils/functions/src/lib.rs | |
| parent | e342a7f522a236991ba9fa6d8a1daa22465ec217 (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 'rola-utils/functions/src/lib.rs')
| -rw-r--r-- | rola-utils/functions/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rola-utils/functions/src/lib.rs b/rola-utils/functions/src/lib.rs index 40f2ca9..3ba2507 100644 --- a/rola-utils/functions/src/lib.rs +++ b/rola-utils/functions/src/lib.rs @@ -1,5 +1,5 @@ mod levenshtein_distance; pub use levenshtein_distance::*; -mod copy_with_temp_rename; -pub use copy_with_temp_rename::*; +mod test_sandbox; +pub use test_sandbox::*; |
