From 89757c16875c7d0c384a161290b9ed1b517388c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20M=C3=BCller?= Date: Sun, 15 Jan 2023 09:10:48 +0100 Subject: [PATCH] Removed debugTools for testing --- Package.swift | 9 +-------- README.md | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Package.swift b/Package.swift index f5fc3595..fce5b819 100644 --- a/Package.swift +++ b/Package.swift @@ -11,8 +11,7 @@ let package = Package( .library( name: "Puddles", targets: ["Puddles"] - ), - .library(name: "PreviewDebugTools", targets: ["PreviewDebugTools"]) + ) ], dependencies: [ .package(url: "https://github.com/apple/swift-docc-plugin", branch: "main"), @@ -24,12 +23,6 @@ let package = Package( dependencies: [ .product(name: "AsyncAlgorithms", package: "swift-async-algorithms"), ] - ), - .target( - name: "PreviewDebugTools", - dependencies: [ - "Puddles" - ] ) ] ) diff --git a/README.md b/README.md index 116f16d1..568a49cc 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ You will also need Swift 5.7 to compile the package. The package is installed through the Swift Package Manager. Simply add the following line to your `Package.swift` dependencies: ```swift -.package(url: "https://github.com/SwiftedMind/Puddles", from: "0.1.0") +.package(url: "https://github.com/SwiftedMind/Puddles", branch: "main") ``` Alternatively, if you want to add the package to an Xcode project, go to `File` > `Add Packages...` and enter the URL "https://github.com/SwiftedMind/Puddles" into the search field at the top. Puddles should appear in the list. Select it and click "Add Package" in the bottom right.