From 7ac1c7b04828e6c3ac26ced442cb305a8172f82e Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sat, 1 Apr 2023 20:34:30 +1100 Subject: [PATCH] Change `#![feature(once_cell)]` to `lazy_cell` --- docs/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/lib.rs b/docs/src/lib.rs index ac61d5b3..0d2c6ba8 100644 --- a/docs/src/lib.rs +++ b/docs/src/lib.rs @@ -1,4 +1,4 @@ -#![feature(once_cell)] +#![feature(lazy_cell)] pub mod page; pub mod string_writer;