Someone raised a question on gitter regarding JSON serialization.
Though the original query was about using the .NET-supplied JSON serializer, it did remind me that the data.json library existed. This library allows serializing Clojure data structures to JSON and deserializing back. The usual limitations -- everything becomes a map.
I had originally ported data.json back in 2013-2014 and not paid much attention since. This gitter interaction prompted me to take a look. Fortunately, the amount of change to the code was not overwhelming.
So I've updated clr.data.json to bring it up to the 2.4.0 version of data.json.
The repo for the clr version is:
https://github.com/clojure/clr.data.json.
It has also been deployed on
clojars.org if you use Leiningen(clr): [org.clojure.clr/data.json "2.4.0"]
Cheers.
-David