forked from CodyFlame/CodyFire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
21 lines (19 loc) · 841 Bytes
/
Package.swift
File metadata and controls
21 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CodyFire",
products: [
// Swift lib that gives ability to build complex raw SQL-queries in a more easy way using KeyPaths
.library(name: "CodyFire", targets: ["CodyFire"]),
],
dependencies: [
.package(url: "https://github.com/daltoniam/Starscream.git", from: "3.0.0"),
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.0.0"),
],
targets: [
.target(name: "CodyFire", dependencies: ["Alamofire", "Starscream"], path: "CodyFire/Classes"),
// .testTarget(name: "SwifQLTests", dependencies: ["SwifQL", "SwifQLPure"]),
],
swiftLanguageVersions: [.v4_2]
)