Skip to content

Commit

Permalink
Remove uuid non use dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
vkatsuba committed Feb 20, 2021
1 parent 75d1a4b commit 22232a2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion include/bellboy.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -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").
Expand Down
3 changes: 1 addition & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
%% == Dependencies ==

{deps, [
{jsx,"3.0.0"},
{uuid, "1.7.5", {pkg, uuid_erl}}
{jsx,"3.0.0"}
]}.

%% == Plugins ==
Expand Down
1 change: 0 additions & 1 deletion src/bellboy.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
{applications,
[kernel,
stdlib,
uuid,
inets,
ssl
]},
Expand Down

0 comments on commit 22232a2

Please sign in to comment.