-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 756 Bytes
/
Package.swift
File metadata and controls
25 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// swift-tools-version:6.0
// This file exists solely for FOSSA dependency scanning.
// The actual project uses Xcode's native SPM integration.
import PackageDescription
let package = Package(
name: "MiddleDrag",
platforms: [.macOS("15.0")],
products: [],
dependencies: [
.package(url: "https://github.com/getsentry/sentry-cocoa.git", from: "9.1.0"),
.package(url: "https://github.com/sparkle-project/Sparkle.git", from: "2.8.1")
],
targets: [
.target(
name: "MiddleDrag",
dependencies: [
.product(name: "Sentry", package: "sentry-cocoa"),
.product(name: "Sparkle", package: "Sparkle")
],
path: "MiddleDrag"
)
]
)