Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.9
// swift-tools-version: 6.1
import PackageDescription

let package = Package(
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,7 @@ Each `XMLNode` contains an array of `Child` values representing the different ki
## Building

This project is a Swift Package Manager module that uses the
[Skip](https://skip.dev) plugin to transpile Swift into Kotlin.

Building the module requires that Skip be installed using
[Homebrew](https://brew.sh) with `brew install skiptools/skip/skip`.
This will also install the necessary build prerequisites:
Kotlin, Gradle, and the Android build tools.
[Skip](https://skip.dev) plugin to build the package for both iOS and Android.

## Testing

Expand Down
2 changes: 1 addition & 1 deletion Sources/SkipXML/SkipXML.swift
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public struct XMLNode : Hashable {
}

/// Options for configuring the `XMLParser`
public struct Options: OptionSet, Hashable {
public struct Options: OptionSet, Hashable, Sendable {
public let rawValue: Int

public static let resolveExternalEntities = Options(rawValue: 1 << 0)
Expand Down