Skip to content

Commit

Permalink
Update Package.swift (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumyk authored Jun 13, 2024
1 parent ebcd98e commit e62163a
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

// swift-tools-version:5.5
import PackageDescription

let package = Package(
name: "Synchronization-swift",
platforms: [
.iOS(.v11)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Synchronization-swift",
targets: ["Synchronization-swift"]),
targets: ["Synchronization-swift"]
),
],
dependencies: [
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.13.0")
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "8.1.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: "Synchronization-swift",
dependencies: ["PromiseKit"]
),
// .testTarget(
// name: "Synchronization-swiftTests",
// dependencies: ["Synchronization-swift"]),
]
)
dependencies: ["PromiseKit"],
path: "Sources"
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit e62163a

Please sign in to comment.