Skip to content

Commit 56a19b4

Browse files
committed
fixes
1 parent 35c8724 commit 56a19b4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
toolchain: [nightly, 1.0.0-beta.0]
19+
toolchain: [nightly, 0.36.0, 1.0.0-beta.0]
2020
steps:
2121
- name: Checkout sources
2222
uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Nargo
4141
uses: noir-lang/[email protected]
4242
with:
43-
toolchain: 1.0.0-beta.0
43+
toolchain: 0.36.0
4444

4545
- name: Run formatter
4646
run: nargo fmt --check

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "noir_bigcurve"
33
type = "lib"
44
authors = [""]
5-
compiler_version = ">=1.0.0"
5+
compiler_version = ">=0.36.0"
66

77
[dependencies]
88
bignum = {tag = "v0.4.2", git = "https://github.com/noir-lang/noir-bignum"}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ This library is a work in progress and likely full of bugs!
1010

1111
`noir_bigcurve` make use of `noir-bignum` to optimally evaluate group operations using a minimal number of modular reductions. Runtime lookup tables are also used to reduce the number of group operations required when evaluating scalar multiplications
1212

13+
## Noir Version Compatibility
14+
15+
We have tested this library with Noir nightly, 0.36.0, and 1.0.0-beta.0
16+
1317
## Dependencies
1418

1519
- Noir >=1.0.0

0 commit comments

Comments
 (0)