-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
44 lines (32 loc) · 1.45 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(defproject dmm "0.1.0-SNAPSHOT"
:description "Data Flow Matrix Machines"
:url "https://github.com/jsa-aerial/DMM"
:license {:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[quil "2.6.0"]
[net.mikera/vectorz-clj "0.45.0"]
[org.clojure/tools.nrepl "0.2.12"] ; Explicit nREPL
[proto-repl "0.3.1"] ; for Atom editor
[org.clojure/core.async "0.4.474"]
[clojure-msgpack "1.2.1"]
[org.clojure/data.json "0.2.6"]
[aerial.hanasu "0.2.1"] ; state-of-the-art websocket framework
;;; if one wants to do more simple-minded websocket experiments:
#_[http.async.client "1.2.0"]
#_[http-kit "2.2.0"]
#_[compojure "1.5.1"]
#_[haslett "0.1.2"]
[com.rpl/specter "1.1.1"]
[aerial.fs "1.1.5"]
[aerial.utils "1.0.8"]
[expectations "2.1.8"]
[seesaw "1.4.5"]
[net.apribase/clj-dns "0.1.0"]] ; reverse-dns-lookup
:plugins [[cider/cider-nrepl "0.16.0"]
[refactor-nrepl "2.2.0"]
[lein-expectations "0.0.8"]
[lein-gorilla "0.3.6"]]
;;:aot :all
:repositories
{"lclrepo" "file:lclrepo"})