LocalData/Package.swift
Matt Bruce 312b2592dc Update Models, Protocols, Services + tests + docs + config
Summary:
- Sources: Models, Protocols, Services
- Tests: EncryptionHelperTests.swift, LocalDataTests.swift
- Docs: README
- Config: Package
- Added symbols: extension StorageKey, func deriveKeyMaterial, func encryptWithKey, func encryptWithAESGCM, func decryptWithKey, func decryptWithAESGCM (+6 more)
- Removed symbols: func extractDerivationParams, func encryptWithKey, func decryptWithKey, class LocalDataTests, func testUserDefaultsRoundTrip, func testFileSystemRoundTrip

Stats:
- 8 files changed, 210 insertions(+), 64 deletions(-)
2026-01-18 14:53:25 -06:00

34 lines
782 B
Swift

// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "LocalData",
platforms: [
.iOS(.v17),
.watchOS(.v10)
],
products: [
.library(
name: "LocalData",
targets: ["LocalData"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-testing.git", from: "0.7.0")
],
targets: [
.target(
name: "LocalData"
),
.testTarget(
name: "LocalDataTests",
dependencies: [
"LocalData",
.product(name: "Testing", package: "swift-testing")
]
),
]
)