Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 3m27s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
39 lines
1 KiB
Swift
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"
|
|
),
|
|
]
|
|
)
|