-
Notifications
You must be signed in to change notification settings - Fork 1
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
Camv 528 port key manager to sprucekit sdk swift #15
Camv 528 port key manager to sprucekit sdk swift #15
Conversation
project.yml
Outdated
@@ -4,7 +4,7 @@ options: | |||
packages: | |||
SpruceIDWalletSdkRs: | |||
url: https://github.com/spruceid/wallet-sdk-rs | |||
from: 0.0.4 | |||
from: 0.0.25 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this change is needed. If this is from as in ^0.0.4 then probably not.
@@ -57,6 +57,7 @@ extension UIScreen { | |||
static let screenSize = UIScreen.main.bounds.size | |||
} | |||
|
|||
@available(iOS 14.0, *) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to add this, otherwise I had trouble building.
Package.swift
Outdated
@@ -6,7 +6,8 @@ import PackageDescription | |||
let package = Package( | |||
name: "SpruceIDWalletSdk", | |||
platforms: [ | |||
.iOS(.v14) | |||
.iOS(.v13), | |||
.macOS(.v10_15) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rust would need to produce an artifact for macOS, perhaps this should be removed until it does.
Implements the KeyManager for generating secret keys in the Secure Enclave.