Skip to content

Commit 0b55ada

Browse files
committed
update to latest collections
1 parent 2121ec0 commit 0b55ada

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ if(FIND_PM_DEPS)
5353
find_package(ArgumentParser CONFIG REQUIRED)
5454
find_package(SwiftCrypto CONFIG REQUIRED)
5555
find_package(SwiftDriver CONFIG REQUIRED)
56-
# FIXME: need to change in SwiftCollections (swift-collections -> SwiftCollections)
57-
find_package(swift-collections CONFIG REQUIRED)
56+
find_package(SwiftCollections CONFIG REQUIRED)
5857
endif()
5958

6059
find_package(dispatch QUIET)

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
359359
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "0.4.3")),
360360
.package(url: "https://github.com/apple/swift-driver.git", .branch(relatedDependenciesBranch)),
361361
.package(url: "https://github.com/apple/swift-crypto.git", .upToNextMinor(from: "1.1.4")),
362-
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "0.0.3")),
362+
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "0.0.4")),
363363
]
364364
} else {
365365
package.dependencies += [

Utilities/bootstrap

+1-3
Original file line numberDiff line numberDiff line change
@@ -604,9 +604,7 @@ def build_swiftpm_with_cmake(args):
604604
"-DArgumentParser_DIR=" + os.path.join(args.swift_argument_parser_build_dir, "cmake/modules"),
605605
"-DSwiftDriver_DIR=" + os.path.join(args.swift_driver_build_dir, "cmake/modules"),
606606
"-DSwiftCrypto_DIR=" + os.path.join(args.swift_crypto_build_dir, "cmake/modules"),
607-
# FIXME: need to change in SwiftCollections (swift-collections -> SwiftCollections)
608-
#"-DSwiftCollections_DIR=" + os.path.join(args.swift_collections_build_dir, "cmake/modules"),
609-
"-Dswift-collections_DIR=" + os.path.join(args.swift_collections_build_dir),
607+
"-DSwiftCollections_DIR=" + os.path.join(args.swift_collections_build_dir, "cmake/modules"),
610608
]
611609

612610
if platform.system() == 'Darwin':

0 commit comments

Comments
 (0)