-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
27 lines (25 loc) · 998 Bytes
/
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
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "EC2macConnector",
platforms: [.macOS(.v13)],
products: [
.executable(name: "ec2macConnector", targets: ["EC2macConnector"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/soto-project/soto.git", from: "6.0.0")
],
targets: [
.executableTarget(
name: "EC2macConnector",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SotoEC2", package: "soto"),
.product(name: "SotoEC2InstanceConnect", package: "soto"),
.product(name: "SotoSecretsManager", package: "soto")
],
path: "Sources")
]
)