TOML parser for your Swift Codable
s.
struct Team: Codable {
struct Player: Codable {
let id: String
let health: Int
let joinDate: Date
}
let players: [Player]
}
let team = try TOMLDecoder().decode(Team.self, from: tomlData)
TOMLDecoder has a relatively simple set of APIs. Learn more in the introduction.
With SwiftPM
.package(url: "https://github.com/dduan/TOMLDecoder", from: "0.2.2")
MIT. See LICENSE.md
.