From 22232a24c885d8bc6560dc29cd8a90f0f69d5cb3 Mon Sep 17 00:00:00 2001 From: vkatsuba Date: Sat, 20 Feb 2021 11:51:28 +0200 Subject: [PATCH] Remove uuid non use dependency --- include/bellboy.hrl | 1 - rebar.config | 3 +-- src/bellboy.app.src | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/include/bellboy.hrl b/include/bellboy.hrl index a32494b..6abb16c 100644 --- a/include/bellboy.hrl +++ b/include/bellboy.hrl @@ -9,7 +9,6 @@ -define(CIPHERS, [[{ciphers, [{rsa, aes_128_cbc, sha}]}]]). -define(SSLC, {ssl, ?CIPHERS}). -define(BAD_ARG, {error, bad_arg}). --define(GEN_UUID_V4, list_to_binary(uuid:uuid_to_string(uuid:get_v4()))). -define(PLIVO_URL_MSG(AuthID), "https://api.plivo.com/v1/Account/" ++ AuthID ++ "/Message/"). -define(TWILIO_URL_MSG(AuthID), "https://api.twilio.com/2010-04-01/Accounts/" ++ AuthID ++ "/Messages.json"). -define(TWILIO_URL_SPEC_MSG(AuthID, Sid), "https://api.twilio.com/2010-04-01/Accounts/" ++ AuthID ++ "/Messages/" ++ Sid ++ ".json"). diff --git a/rebar.config b/rebar.config index 045778a..89c9c1d 100644 --- a/rebar.config +++ b/rebar.config @@ -7,8 +7,7 @@ %% == Dependencies == {deps, [ - {jsx,"3.0.0"}, - {uuid, "1.7.5", {pkg, uuid_erl}} + {jsx,"3.0.0"} ]}. %% == Plugins == diff --git a/src/bellboy.app.src b/src/bellboy.app.src index c0e26f4..88b33a5 100644 --- a/src/bellboy.app.src +++ b/src/bellboy.app.src @@ -5,7 +5,6 @@ {applications, [kernel, stdlib, - uuid, inets, ssl ]},