feat(bridge): add Bonjour node bridge

This commit is contained in:
Peter Steinberger
2025-12-12 21:18:46 +00:00
parent b9007dc721
commit 0b532579d8
17 changed files with 1002 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "ClawdisNodeKit",
platforms: [
.iOS(.v17),
.macOS(.v15),
],
products: [
.library(name: "ClawdisNodeKit", targets: ["ClawdisNodeKit"]),
],
targets: [
.target(
name: "ClawdisNodeKit",
dependencies: [],
swiftSettings: [
.enableUpcomingFeature("StrictConcurrency"),
]),
])