forked from mongodb/swift-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
22 lines (21 loc) · 855 Bytes
/
Package.swift
File metadata and controls
22 lines (21 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "swift-bson",
platforms: [
.macOS(.v10_14)
],
products: [
.library(name: "SwiftBSON", targets: ["SwiftBSON"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio", .upToNextMajor(from: "2.16.0")),
.package(url: "https://github.com/swift-extras/swift-extras-json", .upToNextMinor(from: "0.6.0")),
.package(url: "https://github.com/swift-extras/swift-extras-base64", .upToNextMinor(from: "0.4.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "8.0.0"))
],
targets: [
.target(name: "SwiftBSON", dependencies: ["NIO", "ExtrasJSON", "ExtrasBase64"]),
.testTarget(name: "SwiftBSONTests", dependencies: ["SwiftBSON", "Nimble"])
]
)