feat: Janitor, utilities for cleaning up with tokio

This commit is contained in:
Karolin Varner
2025-08-01 12:01:05 +02:00
parent a85f9b8e63
commit 31a5dbe420
7 changed files with 732 additions and 0 deletions

View File

@@ -25,7 +25,15 @@ mio = { workspace = true }
tempfile = { workspace = true }
uds = { workspace = true, optional = true, features = ["mio_1xx"] }
libcrux-test-utils = { workspace = true, optional = true }
tokio = { workspace = true, optional = true, features = [
"macros",
"rt-multi-thread",
"sync",
"time",
] }
log = { workspace = true }
[features]
experiment_file_descriptor_passing = ["uds"]
trace_bench = ["dep:libcrux-test-utils"]
tokio = ["dep:tokio"]