Skip to content

Commit

Permalink
Prevent crashing with existing credentials (#87)
Browse files Browse the repository at this point in the history
* Fixed issue with transports

* Prevent crashing with existing credentials
  • Loading branch information
LucFauvel authored Jun 25, 2024
1 parent 3a5f106 commit c79240e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slauth"
version = "0.7.7"
version = "0.7.8"
authors = ["richer <richer.arc@gmail.com>", "LucFauvel <luc.fauvel@hotmail.com>"]
edition = "2021"
description = "oath HOTP and TOTP complient implementation"
Expand Down
2 changes: 1 addition & 1 deletion Slauth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Slauth'
s.version = '0.7.7'
s.version = '0.7.8'
s.summary = 'A Swift wrapper around Slauth Rust crate'
s.description = <<-DESC
TODO: Add long description of the pod here.
Expand Down
1 change: 1 addition & 0 deletions src/webauthn/proto/raw_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,7 @@ impl FromStr for Coordinates {
#[derive(PartialEq, Debug, Default, Serialize, Deserialize, Clone, Copy)]
pub enum CoseAlgorithmIdentifier {
Ed25519 = -8,
#[serde(alias = "EC2")]
ES256 = -7,
RSA = -257,
RS1 = -65535,
Expand Down
2 changes: 1 addition & 1 deletion wrappers/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "0.7.7"
versionName "0.7.8"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit c79240e

Please sign in to comment.