Skip to content

Commit 531c6f8

Browse files
authored
Use swift-atomics from v1.0.0 (#114)
* Use swift-atomics from v1.0.0 * swift-atomics 1.0.0 requires swift 5.3
1 parent efb1d74 commit 531c6f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ let package = Package(
1717
targets: []
1818
)
1919

20-
#if compiler(>=5.2)
20+
#if compiler(>=5.3)
2121
package.dependencies += [
22-
.package(url: "https://github.com/apple/swift-atomics.git", .exact("0.0.3")), // exact since < 1.0
22+
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.0"),
2323
]
2424
package.targets += [
2525
.target(name: "Lifecycle", dependencies: ["Logging", "Metrics", "Backtrace", "Atomics"]),

0 commit comments

Comments
 (0)