From 11b7d82b515c65eb0afdf74a2258f92f6fe00707 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Wed, 23 Oct 2024 07:54:37 +0100 Subject: [PATCH] Use .git in Package.swift paths (#233) Resolves #232. --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index f7c31beb..1b6323cb 100644 --- a/Package.swift +++ b/Package.swift @@ -166,8 +166,8 @@ let package = Package( dependencies: [ .package(url: "https://github.com/apple/swift-nio.git", from: "2.67.0"), .package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.27.0"), - .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), - .package(url: "https://github.com/apple/swift-http-types", from: "1.0.0"), + .package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.0.0"), + .package(url: "https://github.com/apple/swift-http-types.git", from: "1.0.0"), ], targets: targets )