From 4a9455b63f8bce972ccbad8cd69561ebed1ebd05 Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Sat, 29 Jul 2023 14:57:01 +0200 Subject: [PATCH] Remove unnecessary once_cell feature --- Cargo.toml | 2 ++ crates/simplexpr/src/lib.rs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 40752b2..9098919 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,7 @@ [workspace] members = ["crates/*"] +resolver = "2" + [profile.dev] split-debuginfo = "unpacked" diff --git a/crates/simplexpr/src/lib.rs b/crates/simplexpr/src/lib.rs index 8a40287..f2cdc87 100644 --- a/crates/simplexpr/src/lib.rs +++ b/crates/simplexpr/src/lib.rs @@ -3,7 +3,6 @@ #![feature(try_blocks)] #![feature(unwrap_infallible)] #![feature(never_type)] -#![feature(once_cell)] pub mod ast; pub mod dynval;