Skip to content

Commit

Permalink
chore: updating Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiacantalu committed Jan 23, 2024
1 parent 1c89b31 commit a27eb6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,22 @@ let package = Package(
name: "SharkCardScan",
platforms: [ .iOS(.v13)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SharkCardScan",
targets: ["SharkCardScan"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"), dependencies: [
.package(
.package(
name: "SharkUtils",
url: "https://github.com/gymshark/ios-shark-utils.git",
.exact("1.0.5")),
],
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 this package depends on.
.target(
name: "SharkCardScan",
dependencies: ["SharkUtils"]),
dependencies: ["SharkUtils"],
path: "Sources",
resources: [.copy("Resources/PrivacyInfo.xcprivacy")]),
.testTarget(
name: "SharkCardScanTests",
dependencies: ["SharkCardScan"]),
Expand Down
File renamed without changes.

0 comments on commit a27eb6e

Please sign in to comment.