From 6510ade3022660c30b19f2bd83d9d97b2ec31a01 Mon Sep 17 00:00:00 2001 From: Dakera Ops Date: Thu, 16 Jul 2026 11:40:19 +0000 Subject: [PATCH] fix(release): add [profile.dist] required by cargo-dist v0.26.0 cargo-dist build errors with "profile 'dist' is not defined" without this profile in Cargo.toml. Inherits from release for optimized builds. Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6bb1064..6a3756c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,3 +84,7 @@ pkg-fmt = "tgz" target = "x86_64-pc-windows-msvc" pkg-url = "{ repo }/releases/download/v{ version }/dk.exe" pkg-fmt = "bin" + +# Required by cargo-dist v0.26.0 dist build command +[profile.dist] +inherits = "release"