-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Package.swift
97 lines (88 loc) · 3.17 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MongoKitten",
platforms: [
.macOS(.v13),
.iOS(.v13)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "MongoKitten",
targets: ["MongoKitten"]),
.library(
name: "Meow",
targets: ["Meow"]),
.library(
name: "MongoClient",
targets: ["MongoClient"]),
.library(
name: "MongoCore",
targets: ["MongoCore"]),
],
dependencies: [
// ✏️
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
// 📈
.package(url: "https://github.com/apple/swift-metrics.git", "1.0.0" ..< "3.0.0"),
// ✅
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.0"),
// 💾
.package(url: "https://github.com/orlandos-nl/BSON.git", from: "8.0.9"),
// 🚀
.package(url: "https://github.com/apple/swift-nio.git", from: "2.43.0"),
// 📚
.package(url: "https://github.com/orlandos-nl/DNSClient.git", from: "2.2.1"),
// 🔑
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.0.0"),
// 🔍
.package(url: "https://github.com/apple/swift-distributed-tracing.git", from: "1.0.0"),
],
targets: [
.target(
name: "_MongoKittenCrypto",
dependencies: []),
.target(
name: "MongoCore",
dependencies: [
.product(name: "BSON", package: "BSON"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOSSL", package: "swift-nio-ssl"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "Logging", package: "swift-log"),
.product(name: "Metrics", package: "swift-metrics"),
.product(name: "Atomics", package: "swift-atomics"),
]),
.target(
name: "MongoKittenCore",
dependencies: ["MongoClient"]),
.target(
name: "MongoKitten",
dependencies: ["MongoClient", "MongoKittenCore"]),
.target(
name: "Meow",
dependencies: ["MongoKitten"]),
.target(
name: "MongoClient",
dependencies: [
"MongoCore",
"_MongoKittenCrypto",
.product(name: "DNSClient", package: "DNSClient"),
.product(name: "Tracing", package: "swift-distributed-tracing")
]
),
.testTarget(
name: "MongoCoreTests",
dependencies: ["MongoCore"]),
.testTarget(
name: "MongoKittenTests",
dependencies: [
"MongoKitten",
]),
.testTarget(
name: "MeowTests",
dependencies: ["Meow"]),
]
)