From caca4f2e3f7a5ef26a2cc320461cd68647560352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Galv=C3=A1n=20=28Dub=29?= Date: Wed, 21 Aug 2024 10:51:19 +0200 Subject: [PATCH] bugfix: add `pub` to merge_sort module (#326) The `pub` keyword is added to the merge_sort module because without this it cannot be used as a dependency due to the following error image ## Pull Request type Please check the type of change your PR introduces: - [x] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no API changes) - [ ] Build-related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior? Issue Number: N/A ## Does this introduce a breaking change? - [ ] Yes - [x] No --- packages/sorting/src/lib.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sorting/src/lib.cairo b/packages/sorting/src/lib.cairo index 0d9186a1..2e6213fe 100644 --- a/packages/sorting/src/lib.cairo +++ b/packages/sorting/src/lib.cairo @@ -1,6 +1,6 @@ mod bubble_sort; pub mod interface; -mod merge_sort; +pub mod merge_sort; pub mod quick_sort; #[cfg(test)] mod tests;