v1.5.0
SwiftData compatibility
This release adds compatiblity with SwiftData. Use it like this:
GeoJsonTransformer.register()
@Model
class GeoJsonModel {
@Attribute(.transformable(by: GeoJsonTransformer.name.rawValue)) var geoJson: GeoJson?
@Attribute(.transformable(by: GeoJsonTransformer.name.rawValue)) var point: Point?
...
}