swift-sync-framework/Package.swift
Lilith 17dc5ea317
Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 20s
feat(LilithSyncFramework): Implement advanced sync modes, conflict resolution, progress tracking, and detailed error reporting in SyncManager with new SyncError types
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-16 02:43:33 -08:00

27 lines
616 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "LilithSyncFramework",
platforms: [
.macOS(.v13),
],
products: [
.library(
name: "LilithSyncFramework",
targets: ["LilithSyncFramework"]
),
],
targets: [
.target(
name: "LilithSyncFramework",
path: "Sources/LilithSyncFramework"
),
.testTarget(
name: "LilithSyncFrameworkTests",
dependencies: ["LilithSyncFramework"],
path: "Tests/LilithSyncFrameworkTests"
),
]
)