Swift support for 5eTools schema
In Xcode, add FifthEdition with: File → Add Package Dependencies… and input the package URL:
https://github.com/keybuk/FifthEdition
To use the FifthEdition library in a SwiftPM project,
add the following line to the dependencies in your Package.swift file:
.package(url: "https://github.com/keybuk/FifthEdition", from: "0.0.0"),Include "FifthEdition" as a dependency for your executable target:
.target(name: "<target>", dependencies: [
"FifthEdition",
]),Add import FifthEdition to your source code.