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 )) })