Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Development/Development.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
4B3722682A33C701005FF24A /* BookUIKitBasedCompositional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3722672A33C701005FF24A /* BookUIKitBasedCompositional.swift */; };
4B910EBC2A77A2F50079D26D /* BookUIKitBasedFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B910EBB2A77A2F50079D26D /* BookUIKitBasedFlow.swift */; };
4B9981D82A34F9B500840751 /* CompositionKit in Frameworks */ = {isa = PBXBuildFile; productRef = 4B9981D72A34F9B500840751 /* CompositionKit */; };
4BCF78712CB7E07C0081171E /* VersatileList in Frameworks */ = {isa = PBXBuildFile; productRef = 4BCF78702CB7E07C0081171E /* VersatileList */; };
4BD04C152B2C05C600FE41D9 /* BookPlainCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BD04C142B2C05C600FE41D9 /* BookPlainCollectionView.swift */; };
4BD04C172B2C13BB00FE41D9 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BD04C162B2C13BB00FE41D9 /* Logger.swift */; };
4BD04C192B2C15E100FE41D9 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BD04C182B2C15E100FE41D9 /* Color.swift */; };
Expand Down Expand Up @@ -59,6 +60,7 @@
4BEAFA4E2A3CE48800478C59 /* AsyncMultiplexImage-Nuke in Frameworks */,
4BEAFA4C2A3CE48800478C59 /* AsyncMultiplexImage in Frameworks */,
4B9981D82A34F9B500840751 /* CompositionKit in Frameworks */,
4BCF78712CB7E07C0081171E /* VersatileList in Frameworks */,
4BD542E92A362B40006261B9 /* DynamicList in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -138,6 +140,7 @@
4BD542E82A362B40006261B9 /* DynamicList */,
4BEAFA4B2A3CE48800478C59 /* AsyncMultiplexImage */,
4BEAFA4D2A3CE48800478C59 /* AsyncMultiplexImage-Nuke */,
4BCF78702CB7E07C0081171E /* VersatileList */,
);
productName = Development;
productReference = 4B26A6772A33239500B75FB4 /* Development.app */;
Expand Down Expand Up @@ -433,6 +436,10 @@
package = 4B9981D62A34F9B500840751 /* XCRemoteSwiftPackageReference "CompositionKit" */;
productName = CompositionKit;
};
4BCF78702CB7E07C0081171E /* VersatileList */ = {
isa = XCSwiftPackageProductDependency;
productName = VersatileList;
};
4BD542E82A362B40006261B9 /* DynamicList */ = {
isa = XCSwiftPackageProductDependency;
productName = DynamicList;
Expand Down
15 changes: 15 additions & 0 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ let package = Package(
.library(
name: "DynamicList",
targets: ["DynamicList"]
),
.library(
name: "CollectionView",
targets: ["CollectionView"]
)
],
dependencies: [
.package(url: "https://github.com/FluidGroup/swift-indexed-collection", from: "0.2.1"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand All @@ -23,6 +28,12 @@ let package = Package(
dependencies: [
]
),
.target(
name: "CollectionView",
dependencies: [
.product(name: "IndexedCollection", package: "swift-indexed-collection"),
]
),
.testTarget(
name: "DynamicListTests",
dependencies: ["DynamicList"]
Expand Down
Loading