mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
36 lines
878 B
Swift
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: "8.1.1")),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "RxPack",
|
|
dependencies: ["RxSwift", "MessagePack", "Socket"]
|
|
),
|
|
.testTarget(
|
|
name: "RxPackTests",
|
|
dependencies: ["RxPack", "Nimble"]
|
|
),
|
|
]
|
|
)
|