This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of HyperSwift with Swift 6.0 for Linux.

Swift 6 data race errors: 3

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/johngarrett/HyperSwift.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/johngarrett/HyperSwift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a749aaa Update README.md
Cloned https://github.com/johngarrett/HyperSwift.git
Revision (git rev-parse @):
a749aaafbf15b6b39cfb56eb4ba9602ecd448d68
SUCCESS checkout https://github.com/johngarrett/HyperSwift.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/johngarrett/HyperSwift.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/31] Compiling HyperSwift Input.swift
/host/spi-builder-workspace/Sources/HyperSwift/HTML/Link.swift:10:51: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
 8 |             attributes: attributes
 9 |                 .merging(
10 |                     ["id": id ?? "", "href": href ?? ""],
   |                                                   `- warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
11 |                     uniquingKeysWith: {
12 |                         [$0, $1].compactMap { $0 }.joined(separator: " ")
[4/31] Compiling HyperSwift Link.swift
/host/spi-builder-workspace/Sources/HyperSwift/HTML/Link.swift:10:51: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
 8 |             attributes: attributes
 9 |                 .merging(
10 |                     ["id": id ?? "", "href": href ?? ""],
   |                                                   `- warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
11 |                     uniquingKeysWith: {
12 |                         [$0, $1].compactMap { $0 }.joined(separator: " ")
[5/31] Compiling HyperSwift Paragraph.swift
/host/spi-builder-workspace/Sources/HyperSwift/HTML/Link.swift:10:51: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
 8 |             attributes: attributes
 9 |                 .merging(
10 |                     ["id": id ?? "", "href": href ?? ""],
   |                                                   `- warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
11 |                     uniquingKeysWith: {
12 |                         [$0, $1].compactMap { $0 }.joined(separator: " ")
[6/31] Compiling HyperSwift Protocols.swift
/host/spi-builder-workspace/Sources/HyperSwift/HTML/Link.swift:10:51: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
 8 |             attributes: attributes
 9 |                 .merging(
10 |                     ["id": id ?? "", "href": href ?? ""],
   |                                                   `- warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
11 |                     uniquingKeysWith: {
12 |                         [$0, $1].compactMap { $0 }.joined(separator: " ")
[7/35] Compiling HyperSwift HyperSwift+Array.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/MediaQuery.swift:12:18: warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
10 |         case height, maxHeight = "max-height", minHeight = "min-height"
11 |         case width, maxWidth = "max-width", minWidth = "min-width"
12 |         #warning("missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp")
   |                  `- warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
13 |     }
14 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:5:23: warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | public struct StyleSheet {
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
   |                       |- warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stylesheet' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stylesheet' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     private static var rawCssString: String = ""
 7 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:6:24: warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
 6 |     private static var rawCssString: String = ""
   |                        |- warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'rawCssString' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'rawCssString' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |     public static func add(_ styles: [Style], to cssClass: String) {
[8/35] Compiling HyperSwift MediaQuery.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/MediaQuery.swift:12:18: warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
10 |         case height, maxHeight = "max-height", minHeight = "min-height"
11 |         case width, maxWidth = "max-width", minWidth = "min-width"
12 |         #warning("missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp")
   |                  `- warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
13 |     }
14 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:5:23: warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | public struct StyleSheet {
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
   |                       |- warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stylesheet' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stylesheet' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     private static var rawCssString: String = ""
 7 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:6:24: warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
 6 |     private static var rawCssString: String = ""
   |                        |- warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'rawCssString' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'rawCssString' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |     public static func add(_ styles: [Style], to cssClass: String) {
[9/35] Compiling HyperSwift Style.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/MediaQuery.swift:12:18: warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
10 |         case height, maxHeight = "max-height", minHeight = "min-height"
11 |         case width, maxWidth = "max-width", minWidth = "min-width"
12 |         #warning("missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp")
   |                  `- warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
13 |     }
14 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:5:23: warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | public struct StyleSheet {
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
   |                       |- warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stylesheet' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stylesheet' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     private static var rawCssString: String = ""
 7 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:6:24: warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
 6 |     private static var rawCssString: String = ""
   |                        |- warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'rawCssString' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'rawCssString' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |     public static func add(_ styles: [Style], to cssClass: String) {
[10/35] Compiling HyperSwift StyleSheet.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/MediaQuery.swift:12:18: warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
10 |         case height, maxHeight = "max-height", minHeight = "min-height"
11 |         case width, maxWidth = "max-width", minWidth = "min-width"
12 |         #warning("missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp")
   |                  `- warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
13 |     }
14 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:5:23: warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | public struct StyleSheet {
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
   |                       |- warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stylesheet' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stylesheet' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     private static var rawCssString: String = ""
 7 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:6:24: warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
 6 |     private static var rawCssString: String = ""
   |                        |- warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'rawCssString' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'rawCssString' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |     public static func add(_ styles: [Style], to cssClass: String) {
[11/35] Compiling HyperSwift Button.swift
[12/35] Compiling HyperSwift Code.swift
[13/35] Compiling HyperSwift Div.swift
[14/35] Compiling HyperSwift HTMLComponent.swift
[15/35] Compiling HyperSwift HTMLElement.swift
[16/35] Compiling HyperSwift HTMLTag.swift
[17/35] Compiling HyperSwift Head.swift
[18/35] Compiling HyperSwift Header.swift
[19/35] Compiling HyperSwift CSS+Styler.swift
[20/35] Compiling HyperSwift CSSExtensions.swift
[21/35] Compiling HyperSwift FontStyler.swift
[22/35] Compiling HyperSwift FrameStyler.swift
[23/35] Compiling HyperSwift GridStyler.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/Stylers/MediaQueryStyler.swift:5:19: warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 3 | public extension HTMLComponent {
 4 |     func with(_ query: MediaQuery) -> HTMLComponent {
 5 |         guard let cssClass = cssClass else {
   |                   `- warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 6 |             return self
 7 |         }
[24/35] Compiling HyperSwift MarginStyler.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/Stylers/MediaQueryStyler.swift:5:19: warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 3 | public extension HTMLComponent {
 4 |     func with(_ query: MediaQuery) -> HTMLComponent {
 5 |         guard let cssClass = cssClass else {
   |                   `- warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 6 |             return self
 7 |         }
[25/35] Compiling HyperSwift MediaQueryStyler.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/Stylers/MediaQueryStyler.swift:5:19: warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 3 | public extension HTMLComponent {
 4 |     func with(_ query: MediaQuery) -> HTMLComponent {
 5 |         guard let cssClass = cssClass else {
   |                   `- warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 6 |             return self
 7 |         }
[26/35] Compiling HyperSwift PaddingStyler.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/Stylers/MediaQueryStyler.swift:5:19: warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 3 | public extension HTMLComponent {
 4 |     func with(_ query: MediaQuery) -> HTMLComponent {
 5 |         guard let cssClass = cssClass else {
   |                   `- warning: value 'cssClass' was defined but never used; consider replacing with boolean test
 6 |             return self
 7 |         }
[27/35] Emitting module HyperSwift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/CSSUnit.swift:10:23: warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |         case rem
 9 |     }
10 |     public static var zero = CSSUnit(0, .px)
   |                       |- warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public let description: String
12 |     public init<T: FloatingPoint>(_ unit: T, _ type: UnitType = .px) {
/host/spi-builder-workspace/Sources/HyperSwift/CSS/MediaQuery.swift:12:18: warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
10 |         case height, maxHeight = "max-height", minHeight = "min-height"
11 |         case width, maxWidth = "max-width", minWidth = "min-width"
12 |         #warning("missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp")
   |                  `- warning: missing a ton of mediafeatures: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
13 |     }
14 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:5:23: warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | public struct StyleSheet {
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
   |                       |- warning: static property 'stylesheet' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stylesheet' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stylesheet' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 |     private static var rawCssString: String = ""
 7 |
/host/spi-builder-workspace/Sources/HyperSwift/CSS/StyleSheet.swift:6:24: warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |     // cssClass: [ [key: value] ]
 5 |     public static var stylesheet: [String: [String: String]] = [:]
 6 |     private static var rawCssString: String = ""
   |                        |- warning: static property 'rawCssString' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'rawCssString' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'rawCssString' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |     public static func add(_ styles: [Style], to cssClass: String) {
[28/35] Compiling HyperSwift Array+HyperSwift.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/CSSUnit.swift:10:23: warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |         case rem
 9 |     }
10 |     public static var zero = CSSUnit(0, .px)
   |                       |- warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public let description: String
12 |     public init<T: FloatingPoint>(_ unit: T, _ type: UnitType = .px) {
[29/35] Compiling HyperSwift CSSColor.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/CSSUnit.swift:10:23: warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |         case rem
 9 |     }
10 |     public static var zero = CSSUnit(0, .px)
   |                       |- warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public let description: String
12 |     public init<T: FloatingPoint>(_ unit: T, _ type: UnitType = .px) {
[30/35] Compiling HyperSwift CSSProperties.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/CSSUnit.swift:10:23: warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |         case rem
 9 |     }
10 |     public static var zero = CSSUnit(0, .px)
   |                       |- warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public let description: String
12 |     public init<T: FloatingPoint>(_ unit: T, _ type: UnitType = .px) {
[31/35] Compiling HyperSwift CSSUnit.swift
/host/spi-builder-workspace/Sources/HyperSwift/CSS/CSSUnit.swift:10:23: warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |         case rem
 9 |     }
10 |     public static var zero = CSSUnit(0, .px)
   |                       |- warning: static property 'zero' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public let description: String
12 |     public init<T: FloatingPoint>(_ unit: T, _ type: UnitType = .px) {
[32/35] Compiling HyperSwift Small.swift
[33/35] Compiling HyperSwift Stacks.swift
[34/35] Compiling HyperSwift Wrappers.swift
[35/35] Compiling HyperSwift String+HyperSwift.swift
Build complete! (15.70s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "HyperSwift",
  "name" : "HyperSwift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "HyperSwift",
      "targets" : [
        "HyperSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HyperSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "HyperSwiftTests",
      "path" : "Tests/HyperSwiftTests",
      "sources" : [
        "CSSAttributesTests.swift",
        "CSSClassTests.swift",
        "DivTests.swift",
        "FrameStyleTests.swift",
        "HTMLComponentTests.swift",
        "LinkTests.swift",
        "StackTests.swift",
        "StylersTest.swift"
      ],
      "target_dependencies" : [
        "HyperSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HyperSwift",
      "module_type" : "SwiftTarget",
      "name" : "HyperSwift",
      "path" : "Sources/HyperSwift",
      "product_memberships" : [
        "HyperSwift"
      ],
      "sources" : [
        "Array+HyperSwift.swift",
        "CSS/CSSColor.swift",
        "CSS/CSSProperties.swift",
        "CSS/CSSUnit.swift",
        "CSS/HyperSwift+Array.swift",
        "CSS/MediaQuery.swift",
        "CSS/Style.swift",
        "CSS/StyleSheet.swift",
        "CSS/Stylers/CSS+Styler.swift",
        "CSS/Stylers/CSSExtensions.swift",
        "CSS/Stylers/FontStyler.swift",
        "CSS/Stylers/FrameStyler.swift",
        "CSS/Stylers/GridStyler.swift",
        "CSS/Stylers/MarginStyler.swift",
        "CSS/Stylers/MediaQueryStyler.swift",
        "CSS/Stylers/PaddingStyler.swift",
        "HTML/Button.swift",
        "HTML/Code.swift",
        "HTML/Div.swift",
        "HTML/HTMLComponent.swift",
        "HTML/HTMLElement.swift",
        "HTML/HTMLTag.swift",
        "HTML/Head.swift",
        "HTML/Header.swift",
        "HTML/Input.swift",
        "HTML/Link.swift",
        "HTML/Paragraph.swift",
        "HTML/Protocols.swift",
        "HTML/Small.swift",
        "HTML/Stacks.swift",
        "HTML/Wrappers.swift",
        "String+HyperSwift.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.