Skip to content

Commit

Permalink
Updated for latest Scenes version
Browse files Browse the repository at this point in the history
* Updated to Igis 1.4.0 and Scenes 1.1.6
* Updated to swift-tools-version:5.7
* Added newly required Swift Atomics
  • Loading branch information
DBenYaakov committed Oct 28, 2022
1 parent aa9b466 commit 35e1583
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
// swift-tools-version:5.0
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ScenesShell",
dependencies: [
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.2")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "ScenesShell"),
.executableTarget(
name: "ScenesShell",
dependencies: [.product(name: "Atomics", package: "swift-atomics")])
]
)
4 changes: 2 additions & 2 deletions dylib.manifest
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Igis 1.3.7
Scenes 1.1.5
Igis 1.4.0
Scenes 1.1.6

0 comments on commit 35e1583

Please sign in to comment.