From ade59fc3821bb95be0723afefbf50110afd80b86 Mon Sep 17 00:00:00 2001
From: tobias <thinkdifferent055@gmail.com>
Date: Thu, 22 Sep 2022 11:55:49 +0200
Subject: [PATCH] Change package include for swift-syntax

---
 .gitignore       |  1 +
 Package.resolved | 50 ------------------------------------------------
 Package.swift    |  2 +-
 3 files changed, 2 insertions(+), 51 deletions(-)
 delete mode 100644 Package.resolved

diff --git a/.gitignore b/.gitignore
index 4576a7d..1adceaa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 .build/
 SwiftMetaModelGenerator.xcodeproj/project.xcworkspace/xcuserdata/
 SwiftMetaModelGenerator.xcodeproj/xcuserdata/
+Package.resolved
diff --git a/Package.resolved b/Package.resolved
deleted file mode 100644
index 1b07e67..0000000
--- a/Package.resolved
+++ /dev/null
@@ -1,50 +0,0 @@
-{
-  "pins" : [
-    {
-      "identity" : "pathkit",
-      "kind" : "remoteSourceControl",
-      "location" : "https://github.com/kylef/PathKit.git",
-      "state" : {
-        "revision" : "3bfd2737b700b9a36565a8c94f4ad2b050a5e574",
-        "version" : "1.0.1"
-      }
-    },
-    {
-      "identity" : "spectre",
-      "kind" : "remoteSourceControl",
-      "location" : "https://github.com/kylef/Spectre.git",
-      "state" : {
-        "revision" : "26cc5e9ae0947092c7139ef7ba612e34646086c7",
-        "version" : "0.10.1"
-      }
-    },
-    {
-      "identity" : "stencil",
-      "kind" : "remoteSourceControl",
-      "location" : "https://github.com/kylef/Stencil.git",
-      "state" : {
-        "revision" : "4f222ac85d673f35df29962fc4c36ccfdaf9da5b",
-        "version" : "0.15.1"
-      }
-    },
-    {
-      "identity" : "swift-argument-parser",
-      "kind" : "remoteSourceControl",
-      "location" : "https://github.com/apple/swift-argument-parser.git",
-      "state" : {
-        "revision" : "9f39744e025c7d377987f30b03770805dcb0bcd1",
-        "version" : "1.1.4"
-      }
-    },
-    {
-      "identity" : "swift-syntax",
-      "kind" : "remoteSourceControl",
-      "location" : "https://github.com/apple/swift-syntax.git",
-      "state" : {
-        "revision" : "04d4497be6b88e524a71778d828790e9589ae1c4",
-        "version" : "0.50700.0"
-      }
-    }
-  ],
-  "version" : 2
-}
diff --git a/Package.swift b/Package.swift
index ee39e23..a42ac86 100644
--- a/Package.swift
+++ b/Package.swift
@@ -10,7 +10,7 @@ let package = Package(
     dependencies: [
         .package(url: "https://github.com/apple/swift-argument-parser.git", exact: "1.1.4"),
         .package(url: "https://github.com/kylef/PathKit.git", exact: "1.0.1"),
-        .package(url: "https://github.com/apple/swift-syntax.git", exact: "0.50700.0"),
+        .package(url: "https://github.com/apple/swift-syntax", branch: "0.50700.0"),
         .package(url: "https://github.com/kylef/Stencil.git", exact: "0.15.1"),
     ],
     targets: [
-- 
GitLab