From 06fab2777f428ab1ad8aedc76152f9adaa355f22 Mon Sep 17 00:00:00 2001 From: rowan Date: Mon, 6 Jan 2025 02:53:19 -0600 Subject: [PATCH] fix devopts --- src/config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config.js b/src/config.js index 4c5de21..58f3e56 100644 --- a/src/config.js +++ b/src/config.js @@ -28,14 +28,15 @@ export const DynamicLinking = Object.freeze({ }) export const DevelopmentOptimizations = Object.freeze({ - active: ({ dynopt }) => dynopt, + active: ({ devopt }) => devopt, apply: curry((_params, project) => map( 'Cargo.toml', pipe( assoc('profile.dev', optLevel(1)), assoc('profile.dev.package."*"', optLevel(3)) - ) + ), + project )) })