1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-03 00:54:42 +03:00
vimr/RxPack/Package.swift
2020-12-24 21:43:56 +01:00

36 lines
878 B
Swift

// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "RxPack",
platforms: [.macOS(.v10_13)],
products: [
.library(name: "RxPack", targets: ["RxPack"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMinor(from: "5.1.1")),
.package(
name: "MessagePack",
url: "https://github.com/a2/MessagePack.swift",
.upToNextMinor(from: "4.0.0")
),
.package(
name: "Socket",
url: "https://github.com/IBM-Swift/BlueSocket",
.upToNextMinor(from: "1.0.52")
),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "9.0.0")),
],
targets: [
.target(
name: "RxPack",
dependencies: ["RxSwift", "MessagePack", "Socket"]
),
.testTarget(
name: "RxPackTests",
dependencies: ["RxPack", "Nimble"]
),
]
)