swift-logging/Package.swift
Lilith d8c3264fd2
Some checks failed
Publish Swift Package / build-test-publish (push) Failing after 17s
chore(LilithLogging): 🔧 Add memory profiling capabilities to logger with full test coverage and CI integration
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-16 02:42:39 -08:00

28 lines
588 B
Swift

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