-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (30 loc) · 1.06 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "HexavilleTODOExample",
products: [
.executable(name: "hexaville-todo-example", targets: ["HexavilleTODOExample"]),
.executable(name: "hexaville-todo-example-dynamodb-migrator", targets: ["HexavilleTODOExampleDynamodbMigrator"]),
],
dependencies: [
.package(url: "https://github.com/Hexaville/HexavilleAuth.git", .upToNextMajor(from: "0.4.0")),
.package(url: "https://github.com/Hexaville/DynamodbSessionStore.git", .upToNextMajor(from: "0.2.0")),
.package(url: "https://github.com/kylef/Stencil.git", .upToNextMajor(from: "0.9.0")),
],
targets: [
.target(
name: "HexavilleTODOExampleDynamodbMigrator",
dependencies: [
"DynamodbSessionStore"
]
),
.target(
name: "HexavilleTODOExample",
dependencies: [
"HexavilleAuth",
"DynamodbSessionStore",
"Stencil"
]
),
]
)