Skip to content

Commit

Permalink
Merge pull request #10 from appunite/chore/spm-support
Browse files Browse the repository at this point in the history
SPM Support
  • Loading branch information
newdiscoblack authored Jan 2, 2024
2 parents fb2c63e + 1725ecd commit 61cae81
Show file tree
Hide file tree
Showing 29 changed files with 48 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"pins" : [
{
"identity" : "differ",
"kind" : "remoteSourceControl",
"location" : "https://github.com/appunite/Differ",
"state" : {
"revision" : "747d0cce14e8c4e4c52f9267c909d3845494822b",
"version" : "1.4.6"
}
}
],
"version" : 2
}
27 changes: 27 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Stefan",
products: [
.library(
name: "Stefan",
targets: ["Stefan"]
),
],
dependencies: [
.package(url: "https://github.com/appunite/Differ", exact: "1.4.6")
],
targets: [
.target(
name: "Stefan",
dependencies: ["Differ"]
),
.testTarget(
name: "StefanTests",
dependencies: ["Stefan"]
),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 61cae81

Please sign in to comment.