Hi,
I am using the following versions:
Erlang/OTP 27 [erts-15.1] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit:ns]
Elixir 1.18.4 (compiled with Erlang/OTP 27)
I am compiling an Identicon project based on the one by Stephen Grider.
In this project, I use the following dependency:
{:egd24, “~> 0.10”}
Unfortunately, when compiling this dependency, I get a compile error:
mix deps.compile egd24
===> Analyzing applications...
===> Compiling string_compat
===> Compiling bbmustache
===> Compiling _build/default/plugins/bbmustache/src/bbmustache.erl failed
ââ _build/default/plugins/bbmustache/src/bbmustache.erl:
â
622 â -spec check_data_type(data() | term()) -> boolean() | maybe.
â â°ââ syntax error before: 'maybe'
ââ _build/default/plugins/bbmustache/src/bbmustache.erl:
â
624 â check_data_type([]) -> maybe;
â â°ââ syntax error before: ';'
ââ _build/default/plugins/bbmustache/src/bbmustache.erl:
â
181 â case check_data_type(Data) of
â â°ââ function check_data_type/1 undefined
ââ _build/default/plugins/bbmustache/src/bbmustache.erl:
â
207 â case check_data_type(Value) of
â â°ââ function check_data_type/1 undefined
ââ _build/default/plugins/bbmustache/src/bbmustache.erl:
â
592 â case check_data_type(Data) =:= true andalso find_data(convert_keytype(Key, State), Data) of
â â°ââ function check_data_type/1 undefined
Any help appreciated…
Thanks,