TOMLDecoder
TOMLDecoder copied to clipboard
From TOML to Swift Codable types.
When using SPM to add TOMLDecoder as a dependency to another package via Xcode, it fails with an error: ``` the target 'TOMLDecoder' in product 'TOMLDecoder' contains unsafe build flags...
The library compiles fine for wasm. So we should build the library, and run tests on CI. - [x] build the library on CI - [ ] run tests on...
Foundation related functionalities should be part of a trait that's enabled by default probably. This can help with embedded Swift support.
The parsing layer is perfectly fine to work in embedded Swift, in theory. `Codable` and friends are marked as not available in embedded Swift. So it's clear that a subset...
TOML is used for configuration! Seems natural to vend a provider for [Swift Configuration](https://github.com/apple/swift-configuration) as a trait.
We have been using CHANGLOG.md. I wonder if it's better to have a script that makes the releasing process better. It can 1. Prepare the patch that would be tagged...