Skip to content

Commit a70ad1d

Browse files
committed
Added newly required Swift Atomics dependency.
* Updated to Igis 1.4.0. * Verified compilation for Swift 5.7.
1 parent 7335932 commit a70ad1d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
Package.resolved
66
.dir-locals.el
77
*~
8+
\#*\#
9+

Package.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ let package = Package(
1313
targets: ["Scenes"]),
1414
],
1515
dependencies: [
16+
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.2")
1617
],
1718
targets: [
1819
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
1920
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2021
.target(
21-
name: "Scenes"),
22+
name: "Scenes",
23+
dependencies: ["Atomics"])
2224
]
2325
)

dylib.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Igis 1.3.7
1+
Igis 1.4.0

0 commit comments

Comments
 (0)