Skip to content

Commit 49b461e

Browse files
committed
Update swift-toolchain-sqlite
Adapt to rename RE swift-toolchain-sqlite#5
1 parent 9608baf commit 49b461e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ let package = Package(
199199
dependencies: [
200200
"_AsyncFileSystem",
201201
.target(name: "SPMSQLite3", condition: .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .visionOS, .macCatalyst, .linux])),
202-
.product(name: "CSQLite", package: "swift-toolchain-sqlite", condition: .when(platforms: [.windows])),
202+
.product(name: "SwiftToolchainCSQLite", package: "swift-toolchain-sqlite", condition: .when(platforms: [.windows])),
203203
.product(name: "DequeModule", package: "swift-collections"),
204204
.product(name: "OrderedCollections", package: "swift-collections"),
205205
.product(name: "SwiftToolsSupport-auto", package: "swift-tools-support-core"),
@@ -944,7 +944,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
944944
.package(url: "https://github.com/apple/swift-system.git", "1.1.1" ..< "1.4.0"),
945945
.package(url: "https://github.com/apple/swift-collections.git", "1.0.1" ..< "1.2.0"),
946946
.package(url: "https://github.com/apple/swift-certificates.git", "1.0.1" ..< "1.6.0"),
947-
.package(url: "https://github.com/swiftlang/swift-toolchain-sqlite.git", from: "0.1.0"),
947+
.package(url: "https://github.com/swiftlang/swift-toolchain-sqlite.git", from: "1.0.0"),
948948
]
949949
} else {
950950
package.dependencies += [

Sources/Basics/SQLite.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import Foundation
1414

1515
#if SWIFT_PACKAGE && os(Windows)
1616
#if USE_IMPL_ONLY_IMPORTS
17-
@_implementationOnly import CSQLite
17+
@_implementationOnly import SwiftToolchainCSQLite
1818
#else
19-
import CSQLite
19+
import SwiftToolchainCSQLite
2020
#endif
2121
#else
2222
#if USE_IMPL_ONLY_IMPORTS

0 commit comments

Comments
 (0)