@@ -239,6 +239,7 @@ let package = Package(
239239 dependencies: [
240240 " _AsyncFileSystem " ,
241241 . target( name: " SPMSQLite3 " , condition: . when( platforms: [ . macOS, . iOS, . tvOS, . watchOS, . visionOS, . macCatalyst, . linux, . openbsd, . custom( " freebsd " ) ] ) ) ,
242+ . product( name: " Subprocess " , package : " swift-subprocess " ) ,
242243 . product( name: " SwiftToolchainCSQLite " , package : " swift-toolchain-sqlite " , condition: . when( platforms: [ . windows, . android] ) ) ,
243244 . product( name: " DequeModule " , package : " swift-collections " ) ,
244245 . product( name: " OrderedCollections " , package : " swift-collections " ) ,
@@ -575,6 +576,7 @@ let package = Package(
575576 dependencies: [
576577 . product( name: " ArgumentParser " , package : " swift-argument-parser " ) ,
577578 . product( name: " OrderedCollections " , package : " swift-collections " ) ,
579+ . product( name: " Subprocess " , package : " swift-subprocess " ) ,
578580 " Basics " ,
579581 " BinarySymbols " ,
580582 " Build " ,
@@ -1113,6 +1115,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
11131115 . package ( url: " https://github.com/apple/swift-system.git " , revision: " 1.5.0 " ) ,
11141116 . package ( url: " https://github.com/apple/swift-collections.git " , revision: " 1.1.6 " ) ,
11151117 . package ( url: " https://github.com/apple/swift-certificates.git " , revision: " 1.10.1 " ) ,
1118+ . package ( url: " https://github.com/swiftlang/swift-subprocess.git " , . upToNextMinor( from: " 0.2.0 " ) ) ,
11161119 . package ( url: " https://github.com/swiftlang/swift-toolchain-sqlite.git " , revision: " 1.0.7 " ) ,
11171120 // Not in toolchain, used for use in previewing documentation
11181121 . package ( url: " https://github.com/swiftlang/swift-docc-plugin " , from: " 1.1.0 " ) ,
@@ -1131,6 +1134,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
11311134 . package ( path: " ../swift-system " ) ,
11321135 . package ( path: " ../swift-collections " ) ,
11331136 . package ( path: " ../swift-certificates " ) ,
1137+ . package ( path: " ../swift-subprocess " ) ,
11341138 . package ( path: " ../swift-toolchain-sqlite " ) ,
11351139 ]
11361140 if !swiftDriverDeps. isEmpty {
0 commit comments