Summary: - Sources: LocalData.swift, Models, Protocols, Services - Tests: LocalDataTests.swift - Docs: Proposal, README - Config: Package - Other: .gitignore - Added symbols: enum StorageKeys, struct AnyCodable, func encode, enum FileDirectory, func url, enum KeychainAccessControl (+49 more) Stats: - 19 files changed, 814 insertions(+)
28 lines
573 B
Swift
28 lines
573 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"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LocalData"
|
|
),
|
|
.testTarget(
|
|
name: "LocalDataTests",
|
|
dependencies: ["LocalData"]
|
|
),
|
|
]
|
|
)
|