Skip to content

Commit

Permalink
sqlite use core module
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Mar 22, 2018
1 parent 1c2184c commit 9d5241f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
],
targets: [
.target(name: "CSQLite"),
.target(name: "SQLite", dependencies: ["Async", "Bits", "CodableKit", "CSQLite", "Debugging"]),
.target(name: "SQLite", dependencies: ["Async", "Bits", "CodableKit", "Core", "CSQLite", "Debugging"]),
.testTarget(name: "SQLiteTests", dependencies: ["SQLite"]),
]
)
1 change: 1 addition & 0 deletions Sources/SQLite/Data/SQLiteData.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Async
import Core
import Foundation

/// All possibles cases for SQLite data.
Expand Down

0 comments on commit 9d5241f

Please sign in to comment.