Improved type safety, local auth support, and better error handling

This commit is contained in:
2025-07-07 18:30:06 +03:00
parent cea23bb06e
commit bb3d349993
14 changed files with 556 additions and 576 deletions

View File

@@ -1,16 +1,15 @@
// swift-tools-version:5.2
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "KeychainKit",
platforms: [.iOS(.v8)],
products: [
.library(name: "KeychainKit", targets: ["KeychainKit"]),
],
dependencies: [],
targets: [
.target(name: "KeychainKit", dependencies: [])
]
name: "KeychainKit",
platforms: [.macOS(.v10_15), .iOS(.v13)],
products: [
.library(name: "KeychainKit", targets: ["KeychainKit"]),
],
targets: [
.target(name: "KeychainKit")
]
)