-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
35 lines (33 loc) · 1.11 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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "swift-azure-sdk",
platforms: [.macOS(.v12)],
products: [
.library(
name: "AzureSDK",
targets: ["AzureSDK"]
)
],
dependencies: [
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.19.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.3"),
.package(url: "https://github.com/CoreOffice/XMLCoder.git", from: "0.17.1"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "3.1.0"),
],
targets: [
.target(
name: "AzureSDK",
dependencies: [
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "Logging", package: "swift-log"),
.product(name: "XMLCoder", package: "XMLCoder"),
.product(name: "Crypto", package: "swift-crypto")
]
),
.testTarget(
name: "IntegrationTests",
dependencies: ["AzureSDK"]
),
]
)