From b9231e1ed44a2580ebaf07d40202b99ca18d602a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Sat, 21 Feb 2026 11:21:02 +0100 Subject: [PATCH] fix: compilation error when wizard feature disabled Refs: #634 --- CHANGELOG.md | 5 +++++ Cargo.lock | 3 +-- Cargo.toml | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5683fd8c..cbcf2f42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Fixed compilation error when `wizard` feature was disabled ([#634]). + ## [1.2.0] - 2026-02-19 ### Added @@ -954,6 +958,7 @@ Few major concepts changed: [#612]: https://github.com/pimalaya/himalaya/issues/612 [#627]: https://github.com/pimalaya/himalaya/issues/627 [#632]: https://github.com/pimalaya/himalaya/issues/632 +[#634]: https://github.com/pimalaya/himalaya/issues/634 [core#1]: https://github.com/pimalaya/core/issues/1 [core#10]: https://github.com/pimalaya/core/issues/10 diff --git a/Cargo.lock b/Cargo.lock index 1886690e..d1a1f45a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3176,8 +3176,7 @@ dependencies = [ [[package]] name = "pimalaya-tui" version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "421a00b7804b153cfe9019cddbf4f07769d98015f513d7761922627e97c712ba" +source = "git+https://github.com/pimalaya/tui#f6dd618d74c13b95f31c25dab1a0eca0711be875" dependencies = [ "async-trait", "clap", diff --git a/Cargo.toml b/Cargo.toml index 93c2a754..a1401fb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,3 +52,6 @@ toml = "0.8" tracing = "0.1" url = "2.2" uuid = { version = "1.19", features = ["v4"] } + +[patch.crates-io] +pimalaya-tui.git = "https://github.com/pimalaya/tui"