Skip to content

Commit

Permalink
Updates Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
s4cha committed Dec 23, 2019
1 parent 351404f commit ede0996
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "Arrow"
name: "Arrow",
platforms: [.iOS(.v8)],
products: [.library(name: "Arrow", targets: ["Arrow"])],
targets: [
.target(name: "Arrow", path: "Source"),
.testTarget(name: "ArrowTests", dependencies: ["Arrow"], path: "ArrowTests")
]
)
1 change: 1 addition & 0 deletions Source/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import CoreGraphics

public protocol ArrowInitializable {
init?(_ json: JSON?)
Expand Down

0 comments on commit ede0996

Please sign in to comment.