Quick Clojure question from a Clojure noob:
we need to parse text files for our project, and are looking at using fnparse to get the job done.
What do we need to add to project.clj for leiningen to manage this dependency?
We’ve already tried adding [name.choi.joshua.fnparse "2.2"] to :dependencies, but lein deps then fails to find it.
We’re worried that maybe we can’t use leiningen for this library. In that case, are there other good parsing libraries out there for Clojure?
Looking on Clojars, it appears the correct dependency is just
[fnparse "2.2.7"].