Skip to content

Commit e7acdca

Browse files
committed
build: replace clojure.data.json with cheshire in deps.edn
Replace org.clojure/data.json with cheshire/cheshire (v5.13.0) in: - components/json-rpc/deps.edn - components/http-client/deps.edn This change improves babashka compatibility (cheshire is built-in) and provides better performance (approximately 2x faster). Part of story #1: Switch from clojure.data.json to cheshire
1 parent 32f2387 commit e7acdca

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

components/http-client/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:paths ["src"]
22
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
3-
org.clojure/data.json {:mvn/version "2.5.0"}}
3+
cheshire/cheshire {:mvn/version "5.13.0"}}
44
:aliases
55
{:test {:extra-paths ["test"]
66
:extra-deps {}}}}

components/json-rpc/deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{:paths ["src"]
2-
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
3-
org.clojure/data.json {:mvn/version "2.5.0"}
4-
poly/http-client {:local/root "../http-client"}}
2+
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
3+
cheshire/cheshire {:mvn/version "5.13.0"}
4+
poly/http-client {:local/root "../http-client"}}
55
:aliases
6-
{:dev {:extra-paths ["test"]
7-
:extra-deps {hato/hato {:mvn/version "1.0.0"}}}
6+
{:dev {:extra-paths ["test"]
7+
:extra-deps {hato/hato {:mvn/version "1.0.0"}}}
88
:test {:extra-paths ["test"]
9-
:extra-deps {hato/hato {:mvn/version "1.0.0"}}}}}
9+
:extra-deps {hato/hato {:mvn/version "1.0.0"}}}}}

0 commit comments

Comments
 (0)