Skip to content

Commit

Permalink
Create Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
AttilaTheFun authored Sep 21, 2019
1 parent 0cd2c17 commit 67189c5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "ConnectionKit",
platforms: [
.iOS(.v8), .tvOS(.v9), .macOS(.v10_11), .watchOS(.v3)
],
products: [
.library(name: "ConnectionKit", targets: ["ConnectionKit"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
],
targets: [
.target(name: "ConnectionKit", dependencies: ["RxSwift", "RxCocoa"], path: "Source"),
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 67189c5

Please sign in to comment.