Compare commits

...

3 Commits
0.1.0 ... main

Author SHA1 Message Date
6e7940c06a Fix style
Some checks failed
SwiftLint / SwiftLint (push) Successful in 7s
Deploy Docs / publish (push) Failing after 18s
2026-02-04 17:10:54 +01:00
05d3606100 Fix build failing on macOS
Some checks failed
Deploy Docs / publish (push) Waiting to run
SwiftLint / SwiftLint (push) Failing after 6s
2026-02-03 20:32:43 +01:00
8cf39abcef Fix not building with latest SQLite.swift
Some checks are pending
Deploy Docs / publish (push) Waiting to run
SwiftLint / SwiftLint (push) Waiting to run
2026-02-02 21:14:17 +01:00

View File

@ -1,4 +1,4 @@
// swift-tools-version: 6.0
// swift-tools-version: 6.1
//
// Package.swift
// meta-sqlite
@ -8,6 +8,24 @@
import PackageDescription
/// The dependencies.
var dependencies: [Package.Dependency] = [
.package(url: "https://git.aparoksha.dev/aparoksha/meta", from: "0.1.0")
]
#if os(Linux)
dependencies += [
.package(url: "https://github.com/stephencelis/CSQLite", from: "3.50.4"),
.package(
url: "https://github.com/stephencelis/SQLite.swift",
from: "0.15.3",
traits: [.defaults, "SQLiteSwiftCSQLite"]
)
]
#else
dependencies.append(.package(url: "https://github.com/stephencelis/SQLite.swift", from: "0.15.3"))
#endif
/// The meta-sqlite package is part of the Aparoksha project.
let package = Package(
name: "meta-sqlite",
@ -21,10 +39,7 @@ let package = Package(
targets: ["MetaSQLite"]
)
],
dependencies: [
.package(url: "https://git.aparoksha.dev/aparoksha/meta", from: "0.1.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift", from: "0.15.3")
],
dependencies: dependencies,
targets: [
.target(
name: "MetaSQLite",