Skip to content

Commit

Permalink
Updated Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
Semen Osipov committed Nov 16, 2022
1 parent 49b08bf commit 486dced
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

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.

18 changes: 17 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
// 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: "Locksmith"
name: "Locksmith",
products: [
.library(
name: "Locksmith",
targets: ["Locksmith"]),
],
targets: [
.target(
name: "Locksmith",
path: "Source"),
.testTarget(
name: "LocksmithTests",
dependencies: ["Locksmith"]),
]
)

0 comments on commit 486dced

Please sign in to comment.