@@ -1206,7 +1206,6 @@ extension Workspace {
12061206 }
12071207
12081208 /// Loads and returns manifests at the given paths.
1209- @available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
12101209 public func loadRootManifests( packages: [ AbsolutePath ] , observabilityScope: ObservabilityScope ) async throws -> [ AbsolutePath : Manifest ] {
12111210 return try await withCheckedThrowingContinuation { continuation in
12121211 self . loadRootManifests ( packages: packages, observabilityScope: observabilityScope) { result in
@@ -1257,7 +1256,6 @@ extension Workspace {
12571256 }
12581257
12591258 /// Loads and returns manifest at the given path.
1260- @available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
12611259 public func loadRootManifest( at path: AbsolutePath , observabilityScope: ObservabilityScope ) async throws -> Manifest {
12621260 return try await withCheckedThrowingContinuation { continuation in
12631261 self . loadRootManifest ( at: path, observabilityScope: observabilityScope) { result in
@@ -1288,7 +1286,6 @@ extension Workspace {
12881286 }
12891287
12901288 /// Loads root package
1291- @available ( macOS 12 , iOS 15 , tvOS 15 , watchOS 8 , * )
12921289 public func loadRootPackage( at path: AbsolutePath , observabilityScope: ObservabilityScope ) async throws -> Package {
12931290 return try await withCheckedThrowingContinuation { continuation in
12941291 self . loadRootPackage ( at: path, observabilityScope: observabilityScope) { result in
0 commit comments