diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1010351..cf8ef03 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - toolchain: [nightly, 0.36.0] + toolchain: [nightly, 1.0.0-beta.0] steps: - name: Checkout sources uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: - name: Install Nargo uses: noir-lang/noirup@v0.1.3 with: - toolchain: 0.36.0 + toolchain: 1.0.0-beta.0 - name: Run formatter run: nargo fmt --check diff --git a/Nargo.toml b/Nargo.toml index 1b9e56b..1a313b3 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -2,6 +2,6 @@ name = "noir_string_search" type = "lib" authors = [""] -compiler_version = ">=0.36.0" +compiler_version = ">=1.0.0" [dependencies] diff --git a/src/lib.nr b/src/lib.nr index 332ba5b..62dd640 100644 --- a/src/lib.nr +++ b/src/lib.nr @@ -1,6 +1,6 @@ mod utils; -pub use utils::{conditional_select, lt_f, DebugRandomEngine}; +pub use utils::{conditional_select, DebugRandomEngine, lt_f}; /** * @brief represents a byte-array of up to MaxBytes, that is used as a "haystack" array,