I'm using an erlang library called erlang_decimal to do some decimal math. My application also uses Decimal as a sub-dependency for Ecto, which is an Elixir library for basically the same kind of thing.
Here's my mix.exs:
defp deps do
[
…
I have an existing ruby project that contains a list of protocol-buffer definitions. I would like to setup a mix.exs file and generate a hex package based on those same protocol-buffer definitions.
I can't seem to find out how to configure my mix…