forked from vapor/mysql-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
38 lines (30 loc) 路 1.65 KB
/
Copy pathPackage.swift
File metadata and controls
38 lines (30 loc) 路 1.65 KB
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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "MySQL",
products: [
.library(name: "MySQL", targets: ["MySQL"]),
],
dependencies: [
// 馃寧 Utility package containing tools for byte manipulation, Codable, OS APIs, and debugging.
.package(url: "https://github.com/vapor/core.git", from: "3.0.0"),
// 馃攽 Hashing (BCrypt, SHA, HMAC, etc), encryption, and randomness.
.package(url: "https://github.com/vapor/crypto.git", from: "3.0.0"),
// 馃梽 Core services for creating database integrations.
.package(url: "https://github.com/vapor/database-kit.git", from: "1.2.0"),
// 馃摝 Dependency injection / inversion of control framework.
.package(url: "https://github.com/vapor/service.git", from: "1.0.0"),
// Event-driven network application framework for high performance protocol servers & clients, non-blocking.
.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"),
// Bindings to OpenSSL-compatible libraries for TLS support in SwiftNIO
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "1.0.0"),
// *锔忊儯 Build SQL queries in Swift. Extensible, protocol-based design that supports DQL, DML, and DDL.
.package(url: "https://github.com/vapor/sql.git", from: "2.0.0"),
],
targets: [
.target(name: "MySQL", dependencies: [
"Async", "Bits", "Core", "Crypto", "DatabaseKit", "NIO", "NIOOpenSSL", "Service", "SQL"
]),
.testTarget(name: "MySQLTests", dependencies: ["Crypto", "MySQL", "SQLBenchmark"]),
]
)