Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into jbmorley/iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley committed Sep 18, 2024
2 parents c840fef + 94fbeb7 commit 182a21f
Show file tree
Hide file tree
Showing 10 changed files with 59 additions and 2,548 deletions.
10 changes: 5 additions & 5 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[submodule "ios/hpple"]
path = hpple
path = dependencies/hpple
url = [email protected]:jbmorley/hpple.git
[submodule "interact"]
path = interact
path = dependencies/interact
url = [email protected]:jbmorley/interact.git
[submodule "scripts/changes"]
path = scripts/changes
Expand All @@ -11,11 +11,11 @@
path = scripts/build-tools
url = https://github.com/jbmorley/build-tools.git
[submodule "diligence"]
path = diligence
path = dependencies/diligence
url = [email protected]:inseven/diligence.git
[submodule "SQLite.swift"]
path = SQLite.swift
path = dependencies/SQLite.swift
url = [email protected]:jbmorley/SQLite.swift.git
[submodule "SelectableCollectionView"]
path = SelectableCollectionView
path = dependencies/SelectableCollectionView
url = [email protected]:jbmorley/SelectableCollectionView.git
114 changes: 47 additions & 67 deletions Bookmarks.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
@@ -1,70 +1,50 @@
{
"object": {
"pins": [
{
"package": "Cassowary",
"repositoryURL": "https://github.com/tribalworldwidelondon/CassowarySwift.git",
"state": {
"branch": null,
"revision": "7de8fee8331ad13eabb8de639fab0fde7a8f0d77",
"version": "2.0.1"
}
},
{
"package": "HashRainbow",
"repositoryURL": "https://github.com/saramah/HashRainbow.git",
"state": {
"branch": "main",
"revision": "3eb3d2ce3b3fce35bcde312ed074a9c237d714ab",
"version": null
}
},
{
"package": "Licensable",
"repositoryURL": "https://github.com/inseven/licensable",
"state": {
"branch": null,
"revision": "a8ad62c6fde5aca29a47459b0687e580eee203dd",
"version": "0.0.13"
}
},
{
"package": "SwiftDocCPlugin",
"repositoryURL": "https://github.com/apple/swift-docc-plugin",
"state": {
"branch": null,
"revision": "26ac5758409154cc448d7ab82389c520fa8a8247",
"version": "1.3.0"
}
},
{
"package": "SymbolKit",
"repositoryURL": "https://github.com/apple/swift-docc-symbolkit",
"state": {
"branch": null,
"revision": "b45d1f2ed151d057b54504d653e0da5552844e34",
"version": "1.0.0"
}
},
{
"package": "SwiftSoup",
"repositoryURL": "https://github.com/scinfu/SwiftSoup.git",
"state": {
"branch": null,
"revision": "f83c097597094a04124eb6e0d1e894d24129af87",
"version": "2.7.0"
}
},
{
"package": "WrappingHStack",
"repositoryURL": "https://github.com/ksemianov/WrappingHStack.git",
"state": {
"branch": "main",
"revision": "3300f68b6bf5f8a75ee7ca8a40f136a558053d10",
"version": null
}
"pins" : [
{
"identity" : "cassowaryswift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/tribalworldwidelondon/CassowarySwift.git",
"state" : {
"revision" : "7de8fee8331ad13eabb8de639fab0fde7a8f0d77",
"version" : "2.0.1"
}
]
},
"version": 1
},
{
"identity" : "hashrainbow",
"kind" : "remoteSourceControl",
"location" : "https://github.com/saramah/HashRainbow.git",
"state" : {
"branch" : "main",
"revision" : "3eb3d2ce3b3fce35bcde312ed074a9c237d714ab"
}
},
{
"identity" : "licensable",
"kind" : "remoteSourceControl",
"location" : "https://github.com/inseven/licensable",
"state" : {
"revision" : "a8ad62c6fde5aca29a47459b0687e580eee203dd",
"version" : "0.0.13"
}
},
{
"identity" : "swiftsoup",
"kind" : "remoteSourceControl",
"location" : "https://github.com/scinfu/SwiftSoup.git",
"state" : {
"revision" : "f83c097597094a04124eb6e0d1e894d24129af87",
"version" : "2.7.0"
}
},
{
"identity" : "wrappinghstack",
"kind" : "remoteSourceControl",
"location" : "https://github.com/ksemianov/WrappingHStack.git",
"state" : {
"branch" : "main",
"revision" : "3300f68b6bf5f8a75ee7ca8a40f136a558053d10"
}
}
],
"version" : 2
}
2,469 changes: 0 additions & 2,469 deletions bookmarks-log.txt

This file was deleted.

14 changes: 7 additions & 7 deletions core/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ let package = Package(
defaultLocalization: "en",
platforms: [
.iOS(.v16),
.macOS(.v13)
.macOS(.v13),
],
products: [
.library(
name: "BookmarksCore",
targets: ["BookmarksCore"]),
targets: ["BookmarksCore"])
],
dependencies: [
.package(path: "./../diligence"),
.package(path: "./../interact"),
.package(path: "./../hpple"),
.package(path: "./../SQLite.swift"),
.package(path: "./../SelectableCollectionView"),
.package(path: "./../dependencies/diligence"),
.package(path: "./../dependencies/interact"),
.package(path: "./../dependencies/hpple"),
.package(path: "./../dependencies/SQLite.swift"),
.package(path: "./../dependencies/SelectableCollectionView"),
.package(url: "https://github.com/ksemianov/WrappingHStack.git", branch: "main"),
.package(url: "https://github.com/saramah/HashRainbow.git", branch: "main"),
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.6.0"),
Expand Down
File renamed without changes.

0 comments on commit 182a21f

Please sign in to comment.