From 6a116211eb0d5d6ed0778aae34c3f0c59c1e3542 Mon Sep 17 00:00:00 2001 From: Minki Kim Date: Thu, 16 Apr 2026 14:19:39 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20=EB=A6=B4=EB=A6=AC=EC=8A=A4=20?= =?UTF-8?q?=EB=B9=8C=EB=93=9C=20=EC=B5=9C=EC=A0=81=ED=99=94=EC=99=80=20?= =?UTF-8?q?=ED=8C=A8=EC=B9=98=20=EB=B2=84=EC=A0=84=20=EA=B0=B1=EC=8B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 릴리스 산출물의 성능과 크기를 개선하고 다음 배포 단위를 준비하기 위해 워크스페이스 프로필과 크레이트 버전을 함께 정리합니다. Made-with: Cursor --- Cargo.toml | 5 +++++ core/Cargo.toml | 2 +- polars/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0b0b3d5..2dded90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,3 +5,8 @@ members = [ ] default-members = ["core"] resolver = "2" + +[profile.release] +lto = "fat" +codegen-units = 1 +strip = true diff --git a/core/Cargo.toml b/core/Cargo.toml index 30b8896..31d8893 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "techr-core" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Rust core implementation for techr technical indicators" license = "MIT" diff --git a/polars/Cargo.toml b/polars/Cargo.toml index 2d69068..c6b9b0a 100644 --- a/polars/Cargo.toml +++ b/polars/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polars_techr" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Polars expression plugins for techr indicators" license = "MIT"