Bump deps
This commit is contained in:
parent
c4e8a7accb
commit
28765ac501
2 changed files with 6 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
(defproject com.taoensso/nippy "2.11.0-beta1"
|
(defproject com.taoensso/nippy "2.11.0-beta1"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Clojure serialization library"
|
:description "High-performance serialization library for Clojure"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
:url "http://www.eclipse.org/legal/epl-v10.html"
|
:url "http://www.eclipse.org/legal/epl-v10.html"
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
:dependencies
|
:dependencies
|
||||||
[[org.clojure/clojure "1.5.1"]
|
[[org.clojure/clojure "1.5.1"]
|
||||||
[org.clojure/tools.reader "0.10.0"]
|
[org.clojure/tools.reader "0.10.0"]
|
||||||
[com.taoensso/encore "2.28.0"]
|
[com.taoensso/encore "2.32.0"]
|
||||||
[org.iq80.snappy/snappy "0.4"]
|
[org.iq80.snappy/snappy "0.4"]
|
||||||
[org.tukaani/xz "1.5"]
|
[org.tukaani/xz "1.5"]
|
||||||
[net.jpountz.lz4/lz4 "1.3"]]
|
[net.jpountz.lz4/lz4 "1.3"]]
|
||||||
|
|
@ -30,12 +30,12 @@
|
||||||
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
||||||
:dependencies [[org.clojure/test.check "0.9.0"]
|
:dependencies [[org.clojure/test.check "0.9.0"]
|
||||||
[org.clojure/data.fressian "0.2.1"]
|
[org.clojure/data.fressian "0.2.1"]
|
||||||
[org.xerial.snappy/snappy-java "1.1.2"]]}
|
[org.xerial.snappy/snappy-java "1.1.2.1"]]}
|
||||||
:dev [:1.8 :test
|
:dev [:1.8 :test
|
||||||
{:plugins
|
{:plugins
|
||||||
[[lein-pprint "1.1.2"]
|
[[lein-pprint "1.1.2"]
|
||||||
[lein-ancient "0.6.8"]
|
[lein-ancient "0.6.8"]
|
||||||
[lein-codox "0.9.0"]]}]}
|
[lein-codox "0.9.1"]]}]}
|
||||||
|
|
||||||
:test-paths ["test" "src"]
|
:test-paths ["test" "src"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
(ns taoensso.nippy
|
(ns taoensso.nippy
|
||||||
"High-performance JVM Clojure serialization library. Originally adapted from
|
"High-performance serialization library for Clojure.
|
||||||
Deep-Freeze (https://goo.gl/OePPGr)."
|
Originally adapted from Deep-Freeze (Ref. https://goo.gl/OePPGr)."
|
||||||
{:author "Peter Taoussanis (@ptaoussanis)"}
|
{:author "Peter Taoussanis (@ptaoussanis)"}
|
||||||
(:require [taoensso.encore :as enc]
|
(:require [taoensso.encore :as enc]
|
||||||
[taoensso.nippy
|
[taoensso.nippy
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue