Skip to content

Commit 724765b

Browse files
author
Semen Osipov
committed
Added Package.swift for Swift 6.0
1 parent 09820f4 commit 724765b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 5.7
1+
// swift-tools-version: 6.0
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription

Package@swift-5.7.swift

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// swift-tools-version: 5.7
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "AlignedCollectionViewFlowLayout",
8+
products: [
9+
.library(
10+
name: "AlignedCollectionViewFlowLayout",
11+
targets: ["AlignedCollectionViewFlowLayout"])
12+
],
13+
targets: [
14+
.target(
15+
name: "AlignedCollectionViewFlowLayout",
16+
path: "AlignedCollectionViewFlowLayout")
17+
]
18+
)

0 commit comments

Comments
 (0)