lilith-messaging-api-client/Package.swift
Natalie ac0d0898d5
Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 3m27s
feat(@api-client): add web socket and rest client support
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-15 01:16:47 -07:00

39 lines
1 KiB
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "MessagingAPIClient",
platforms: [
.iOS(.v17),
.macOS(.v14),
],
products: [
.library(
name: "MessagingAPIClient",
targets: ["MessagingAPIClient"]
),
],
dependencies: [
.package(
url: "https://forge.nasty.sh/lilith/swift-foundations-logging.git",
from: "1.0.0"
),
.package(
url: "https://forge.nasty.sh/lilith/swift-messaging-chat-core.git",
from: "1.0.0"
),
.package(path: "../domain-models"),
],
targets: [
.target(
name: "MessagingAPIClient",
dependencies: [
.product(name: "LilithLogging", package: "logging"),
.product(name: "MessagingChatCore", package: "chat-core"),
.product(name: "LilithDomainModels", package: "domain-models"),
],
path: "Sources/MessagingAPIClient"
),
]
)