From eac635f9effee36b080c2c9cf90b23671273fa27 Mon Sep 17 00:00:00 2001 From: Marcelino Alberdi Pereira Date: Mon, 23 Mar 2026 12:30:45 +0100 Subject: [PATCH] chore: Remove unused njson references --- rebar.config | 1 - rebar.lock | 4 ---- src/nrte.app.src | 2 +- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/rebar.config b/rebar.config index e89cc9e..62bfb53 100644 --- a/rebar.config +++ b/rebar.config @@ -3,7 +3,6 @@ {deps, [ {cowboy, {git, "https://github.com/ninenines/cowboy.git", {branch, "master"}}}, {ebus, "0.3.0", {pkg, erlbus}}, - {njson, {git, "https://github.com/nomasystems/njson.git", {branch, "main"}}}, {nuid, {git, "https://github.com/nomasystems/nuid.git", {branch, "main"}}} ]}. diff --git a/rebar.lock b/rebar.lock index b6d0c4d..c51fa83 100644 --- a/rebar.lock +++ b/rebar.lock @@ -8,10 +8,6 @@ {ref,"aca0ad953417b29bab2c41eeb4c37c98606c848b"}}, 1}, {<<"ebus">>,{pkg,<<"erlbus">>,<<"0.3.0">>},0}, - {<<"njson">>, - {git,"https://github.com/nomasystems/njson.git", - {ref,"541754472e8d9713fe8a320a7007c15015095c45"}}, - 0}, {<<"nuid">>, {git,"https://github.com/nomasystems/nuid.git", {ref,"524ed2d7f7afb9860abe836cb9a852fa800a0aed"}}, diff --git a/src/nrte.app.src b/src/nrte.app.src index c64744c..3bb9be2 100644 --- a/src/nrte.app.src +++ b/src/nrte.app.src @@ -2,6 +2,6 @@ {description, "An OTP libary to send and receive real time events over HTTP connections"}, {vsn, "1.0.0"}, {registered, []}, - {applications, [kernel, stdlib, cowboy, ebus, njson]}, + {applications, [kernel, stdlib, cowboy, ebus]}, {env, []} ]}.