From b410457f9f66295e13f428afcfff84fdafa3f1f9 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Mon, 22 Apr 2024 09:15:52 -0700 Subject: [PATCH] Remove unused swift-collections dependency --- Package.resolved | 9 --------- Package.swift | 2 -- 2 files changed, 11 deletions(-) diff --git a/Package.resolved b/Package.resolved index 0dd993f..03e3320 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,14 +1,5 @@ { "pins" : [ - { - "identity" : "swift-collections", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-collections", - "state" : { - "revision" : "94cf62b3ba8d4bed62680a282d4c25f9c63c2efb", - "version" : "1.1.0" - } - }, { "identity" : "swift-macro-testing", "kind" : "remoteSourceControl", diff --git a/Package.swift b/Package.swift index 209db12..2b097b4 100644 --- a/Package.swift +++ b/Package.swift @@ -16,7 +16,6 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apple/swift-syntax", "509.0.0"..<"511.0.0"), - .package(url: "https://github.com/apple/swift-collections", from: "1.0.0"), .package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.1.0"), .package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "1.0.0"), ], @@ -25,7 +24,6 @@ let package = Package( name: "Perception", dependencies: [ "PerceptionMacros", - .product(name: "OrderedCollections", package: "swift-collections"), .product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"), ] ),