From 7c1d81cee9d47b38eda14f56e31074d80e8b2e97 Mon Sep 17 00:00:00 2001 From: Hare Date: Thu, 3 Sep 2026 15:59:40 +0900 Subject: [PATCH] chore: optimize build --- .cargo/config.toml | 2 +- Cargo.toml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 2e2fd2b5..e0e8108b 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [build] -build-dir = "{cargo-cache-home}/build/{workspace-path-hash}" +build-dir = "{cargo-cache-home}/build/yoi" incremental = false diff --git a/Cargo.toml b/Cargo.toml index 36789a2b..7bb06887 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,6 +68,12 @@ default-members = [ edition = "2024" license = "MIT" +[profile.dev] +debug = "line-tables-only" + +[profile.dev.package."*"] +debug = false + [workspace.dependencies] # Internal crates client = { path = "crates/client" }