is there a way to customize the types that a YAML doc is parsed into? clj-yaml is turning dates into java.util.Date and i want it to use java.time.LocalDate instead
maybe not without reaching into snakeyaml interop, not sure. but perhaps you can just postwalk the data yourself?
postwalk as in clojure.walk/postwalk? that sounds doable, thanks 🙂
oh hm i am causing myself trouble here, clojure.data.json doesn't support serializing ZonedDateTime
oh i see i want java-time/java-date, then i don't have to do any conversions at all