From b4e0a96d528f08afaf900ffa3208038827340d3c Mon Sep 17 00:00:00 2001 From: Aphyr Date: Tue, 16 Jul 2013 08:50:58 -0700 Subject: [PATCH] Clojure 1.5.1, clj-http 0.7.5, cheshire 5.2.0. --- project.clj | 8 ++++---- src/clj_librato/metrics.clj | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/project.clj b/project.clj index b874f46..2dcf117 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject clj-librato "0.0.2" +(defproject clj-librato "0.0.3-SNAPSHOT" :description "Clojure interface to the Librato service" - :dependencies [[org.clojure/clojure "1.4.0"] - [clj-http "0.5.6"] - [clj-json "0.5.1"]]) + :dependencies [[org.clojure/clojure "1.5.1"] + [clj-http "0.7.5"] + [cheshire "5.2.0"]]) diff --git a/src/clj_librato/metrics.clj b/src/clj_librato/metrics.clj index b27c510..ae63666 100644 --- a/src/clj_librato/metrics.clj +++ b/src/clj_librato/metrics.clj @@ -1,6 +1,6 @@ (ns clj-librato.metrics (:use [slingshot.slingshot :only [try+]]) - (:require [clj-json.core :as json] + (:require [cheshire.core :as json] [clj-http.client :as client] [clojure.string :as string] clj-http.util))