diff options
author | Vincent Ambo <mail@tazj.in> | 2024-10-13T10·30+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-10-13T14·45+0000 |
commit | 4beee4cba79efda4145e84c12ecbc876f39f2134 (patch) | |
tree | 680ce25d0c475f8fc13c2290dc5db6ab053b225a /tvix/glue/benches | |
parent | 5faf7c9d7b5fcf8fb2795b5879aece45d7c62b21 (diff) |
refactor(tvix/glue): remove use of lazy_static r/8803
This is now supported in the standard library via std::sync::LazyLock, but requires some manual shuffling around of code. Change-Id: Ibb3be8458b8a8912ea04c9360d64c5cf914254d4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12609 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/glue/benches')
-rw-r--r-- | tvix/glue/benches/eval.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tvix/glue/benches/eval.rs b/tvix/glue/benches/eval.rs index a0823d2e129b..ce14bdcc13ec 100644 --- a/tvix/glue/benches/eval.rs +++ b/tvix/glue/benches/eval.rs @@ -1,7 +1,7 @@ use clap::Parser; use criterion::{black_box, criterion_group, criterion_main, Criterion}; -use lazy_static::lazy_static; use mimalloc::MiMalloc; +use std::sync::LazyLock; use std::{env, rc::Rc, sync::Arc, time::Duration}; use tvix_build::buildservice::DummyBuildService; use tvix_eval::{builtins::impure_builtins, EvalIO}; @@ -16,9 +16,8 @@ use tvix_store::utils::{construct_services, ServiceUrlsMemory}; #[global_allocator] static GLOBAL: MiMalloc = MiMalloc; -lazy_static! { - static ref TOKIO_RUNTIME: tokio::runtime::Runtime = tokio::runtime::Runtime::new().unwrap(); -} +static TOKIO_RUNTIME: LazyLock<tokio::runtime::Runtime> = + LazyLock::new(|| tokio::runtime::Runtime::new().unwrap()); fn interpret(code: &str) { // TODO: this is a bit annoying. |