forked from funcool/octet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (21 loc) · 936 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
(defproject funcool/octet "1.0.2"
:description "A clojure(script) library for work with binary data."
:url "https://github.com/funcool/octet"
:license {:name "Public Domain"
:url "http://unlicense.org/"}
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/clojurescript "1.9.293" :scope "provided"]
[io.netty/netty-buffer "4.1.5.Final"]]
:source-paths ["src"]
:test-paths ["test"]
:jar-exclusions [#"\.cljx|\.swp|\.swo|\.DS_Store|user.clj"]
:codeina {:sources ["src"]
:reader :clojure
:exclude [octet.spec.basic
octet.spec.string
octet.spec.collections]
:target "doc/dist/latest/api"
:src-uri "http://github.com/funcool/codeina/blob/master/"
:src-uri-prefix "#L"}
:plugins [[funcool/codeina "0.5.0"]
[lein-ancient "0.6.10"]])