-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rc.1 * readme + ci updates * rm sqlite-kit test
- Loading branch information
1 parent
323f778
commit 7251abf
Showing
5 changed files
with
53 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
// swift-tools-version:5.1 | ||
// swift-tools-version:5.2 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "sqlite-kit", | ||
platforms: [ | ||
.macOS(.v10_14) | ||
.macOS(.v10_15) | ||
], | ||
products: [ | ||
.library(name: "SQLiteKit", targets: ["SQLiteKit"]), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.0.0-beta.2"), | ||
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.0.0-beta.2"), | ||
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0-beta.2"), | ||
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.0.0-rc."), | ||
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.0.0-rc.1"), | ||
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0-rc.1"), | ||
], | ||
targets: [ | ||
.target(name: "SQLiteKit", dependencies: [ | ||
"AsyncKit", | ||
"SQLiteNIO", | ||
"SQLKit" | ||
.product(name: "AsyncKit", package: "async-kit"), | ||
.product(name: "SQLiteNIO", package: "sqlite-nio"), | ||
.product(name: "SQLKit", package: "sql-kit"), | ||
]), | ||
.testTarget(name: "SQLiteKitTests", dependencies: [ | ||
.product(name: "SQLKitBenchmark", package: "sql-kit"), | ||
.target(name: "SQLiteKit"), | ||
]), | ||
.testTarget(name: "SQLiteKitTests", dependencies: ["SQLKitBenchmark", "SQLiteKit"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
<p align="center"> | ||
<img src="https://user-images.githubusercontent.com/1342803/58998319-27aa5d80-87ce-11e9-94e6-c142c86ab28d.png" alt="SQLiteKit"> | ||
<img | ||
src="https://user-images.githubusercontent.com/1342803/58998319-27aa5d80-87ce-11e9-94e6-c142c86ab28d.png" | ||
height="64" | ||
alt="SQLiteKit" | ||
> | ||
<br> | ||
<br> | ||
<a href="https://api.vapor.codes/sqlite-kit/master/SQLiteKit/index.html"> | ||
<img src="http://img.shields.io/badge/api-docs-2196f3.svg" alt="Documentation"> | ||
<a href="https://docs.vapor.codes/4.0/"> | ||
<img src="http://img.shields.io/badge/read_the-docs-2196f3.svg" alt="Documentation"> | ||
</a> | ||
<a href="https://discord.gg/vapor"> | ||
<img src="https://img.shields.io/discord/431917998102675485.svg" alt="Team Chat"> | ||
</a> | ||
<a href="LICENSE"> | ||
<img src="http://img.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT License"> | ||
</a> | ||
<a href="https://circleci.com/gh/vapor/sqlite-kit"> | ||
<img src="https://circleci.com/gh/vapor/sqlite-kit.svg?style=shield" alt="Continuous Integration"> | ||
<a href="https://github.com/vapor/sqlite-kit/actions"> | ||
<img src="https://github.com/vapor/sqlite-kit/workflows/test/badge.svg" alt="Continuous Integration"> | ||
</a> | ||
<a href="https://swift.org"> | ||
<img src="http://img.shields.io/badge/swift-5-brightgreen.svg" alt="Swift 5"> | ||
<img src="http://img.shields.io/badge/swift-5.2-brightgreen.svg" alt="Swift 5.2"> | ||
</a> | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters