-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (24 loc) · 898 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(defproject com.amperity/separator "0.2.0"
:description "An efficient and defensive delimiter-separated-value parser."
:url "https://github.com/amperity/separator"
:license {:name "MIT License"
:url "https://mit-license.org/"}
:plugins
[[lein-cloverage "1.2.2"]]
:dependencies
[[org.clojure/clojure "1.11.1"]]
:java-source-paths ["src"]
:profiles
{:repl
{:source-paths ["dev"]
:repl-options {:init-ns separator.repl}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+UnlockDiagnosticVMOptions"
"-XX:+DebugNonSafepoints"
"-Djdk.attach.allowAttachSelf"]
:dependencies
[[org.clojure/tools.namespace "1.3.0"]
[org.clojure/data.csv "1.0.1"]
[com.clojure-goes-fast/clj-async-profiler "1.0.0"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-csv "2.12.2"]
[criterium "0.4.6"]]}})