forked from apple/swift-service-discovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
36 lines (32 loc) · 1.23 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// swift-tools-version:5.9
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftServiceDiscovery open source project
//
// Copyright (c) 2020-2022 Apple Inc. and the SwiftServiceDiscovery project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftServiceDiscovery project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import PackageDescription
let package = Package(
name: "swift-service-discovery",
products: [.library(name: "ServiceDiscovery", targets: ["ServiceDiscovery"])],
dependencies: [
.package(url: "https://github.com/apple/swift-atomics", from: "1.0.2"),
.package(url: "https://github.com/apple/swift-log", from: "1.2.0"),
],
targets: [
.target(
name: "ServiceDiscovery",
dependencies: [
.product(name: "Atomics", package: "swift-atomics"), .product(name: "Logging", package: "swift-log"),
]
),
.testTarget(name: "ServiceDiscoveryTests", dependencies: ["ServiceDiscovery"]),
]
)