-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
31 lines (29 loc) · 967 Bytes
/
Package.swift
File metadata and controls
31 lines (29 loc) · 967 Bytes
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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "kubewardenSdk",
products: [
.library(
name: "kubewardenSdk",
targets: ["kubewardenSdk"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.11.0"),
.package(name: "GenericJSON", url: "https://github.com/zoul/generic-json-swift.git", from: "2.0.2"),
.package(name: "wapc", url: "https://github.com/wapc/wapc-guest-swift.git", from: "0.0.2"),
],
targets: [
.target(
name: "kubewardenSdk",
dependencies: [
.product(name: "Logging", package: "swift-log"),
"GenericJSON",
"wapc"
]),
.testTarget(
name: "kubewardenSdkTests",
dependencies: ["kubewardenSdk"]
)
]
)