Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #153

Merged
merged 3 commits into from
Jun 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Aries-Askar"

env:
RUST_VERSION: "1.61.0"
RUST_VERSION: "1.64.0"
CROSS_VERSION: "0.2.4"

on:
Expand Down Expand Up @@ -387,8 +387,7 @@ jobs:
build-android:
name: Build library (Android)
needs: [checks]
env:
RUST_VERSION: "1.64.0" # Overriding the rust version here for lower NDK support
# NB: RUST_VERSION must be 1.64+ here for lower NDK support

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/aries-askar-shared/src/crypto/Key.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { KeyAlgs, SigAlgs } from '../enums'
import type { LocalKeyHandle } from './handles'
import type { KeyAlgs, SigAlgs } from '../enums'

import { ariesAskar } from '../ariesAskar'
import { KeyMethod, keyAlgFromString } from '../enums'
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/aries-askar-shared/src/store/Scan.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { EntryListHandle, ScanHandle } from '../crypto'
import type { Entry, EntryObject } from './Entry'
import type { Store } from './Store'
import type { EntryListHandle, ScanHandle } from '../crypto'

import { ariesAskar } from '../ariesAskar'
import { AriesAskarError } from '../error'
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/aries-askar-shared/src/store/Store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { StoreHandle } from '../crypto'
import type { StoreKeyMethod } from './StoreKeyMethod'
import type { StoreHandle } from '../crypto'

import { ariesAskar } from '../ariesAskar'

Expand Down
Loading