Skip to content

Commit 4d3d3de

Browse files
committed
bump deps
1 parent b16610d commit 4d3d3de

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
toolchain: [1.0.0-beta.3]
15+
toolchain: [1.0.0-beta.3, 1.0.0-beta.4, 1.0.0-beta.5]
1616
steps:
1717
- name: Checkout sources
1818
uses: actions/checkout@v4
1919

2020
- name: Install Nargo
21-
uses: noir-lang/[email protected].3
21+
uses: noir-lang/[email protected].4
2222
with:
2323
toolchain: ${{ matrix.toolchain }}
2424

@@ -32,9 +32,9 @@ jobs:
3232
uses: actions/checkout@v4
3333

3434
- name: Install Nargo
35-
uses: noir-lang/[email protected].3
35+
uses: noir-lang/[email protected].4
3636
with:
37-
toolchain: 1.0.0-beta.3
37+
toolchain: 1.0.0-beta.5
3838

3939
- name: Run formatter
4040
run: nargo fmt --check

Nargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "webauthn"
33
type = "lib"
44
description = "Webauthn/Passkeys signature verification in Noir"
5-
version = "0.37.0"
5+
version = "0.37.1"
66
authors = ["Oleh Misarosh <[email protected]>"]
77
repository = "https://github.com/olehmisar/noir_webauthn"
88
keywords = [
@@ -15,5 +15,5 @@ keywords = [
1515
]
1616

1717
[dependencies]
18-
base64 = { git = "https://github.com/noir-lang/noir_base64", tag = "v0.3.1" }
19-
nodash = { git = "https://github.com/olehmisar/nodash", tag = "v0.40.2" }
18+
base64 = { git = "https://github.com/noir-lang/noir_base64", tag = "v0.4.0" }
19+
nodash = { git = "https://github.com/olehmisar/nodash", tag = "v0.41.2" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In your _Nargo.toml_ file, add the version of this library you would like to ins
2323

2424
```toml
2525
[dependencies]
26-
webauthn = { tag = "v0.37.0", git = "https://github.com/olehmisar/noir_webauthn" }
26+
webauthn = { tag = "v0.37.1", git = "https://github.com/olehmisar/noir_webauthn" }
2727
```
2828

2929
## Usage

src/lib.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub fn verify_signature<let CLIENT_DATA_JSON_MAX_LEN: u32, let AUTHENTICATOR_DAT
1414
concat(authenticator_data, client_data_json_hash);
1515
let hashed_message = nodash::sha256(concatenated);
1616

17-
let challenge_base64_url: [u8; 43] = base64::BASE64_URL_ENCODER.encode(challenge);
17+
let challenge_base64_url: [u8; 43] = base64::BASE64_URL_ENCODER::encode(challenge);
1818
str_contains_base64_url(
1919
client_data_json.storage(),
2020
challenge_base64_url,

0 commit comments

Comments
 (0)