Current section
2 Versions
Jump to
Current section
2 Versions
Compare versions
2
files changed
+9
additions
-4
deletions
| @@ -1,11 +1,16 @@ | |
| 1 1 | {<<"links">>,[{<<"GitHub">>,<<"https://github.com/cozy-elixir/jxon">>}]}. |
| 2 2 | {<<"name">>,<<"jxon">>}. |
| 3 | - {<<"version">>,<<"0.1.0">>}. |
| 3 | + {<<"version">>,<<"0.1.1">>}. |
| 4 4 | {<<"description">>,<<"A wrapper for various JSON implementations.">>}. |
| 5 5 | {<<"elixir">>,<<"~> 1.15">>}. |
| 6 6 | {<<"app">>,<<"jxon">>}. |
| 7 7 | {<<"licenses">>,[<<"Apache-2.0">>]}. |
| 8 | - {<<"requirements">>,[]}. |
| 8 | + {<<"requirements">>, |
| 9 | + [[{<<"name">>,<<"jason">>}, |
| 10 | + {<<"app">>,<<"jason">>}, |
| 11 | + {<<"optional">>,true}, |
| 12 | + {<<"requirement">>,<<">= 0.0.0">>}, |
| 13 | + {<<"repository">>,<<"hexpm">>}]]}. |
| 9 14 | {<<"files">>, |
| 10 15 | [<<"lib">>,<<"lib/jxon.ex">>,<<".formatter.exs">>,<<"mix.exs">>, |
| 11 16 | <<"README.md">>]}. |
| @@ -1,7 +1,7 @@ | |
| 1 1 | defmodule JXON.MixProject do |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 | - @version "0.1.0" |
| 4 | + @version "0.1.1" |
| 5 5 | @description "A wrapper for various JSON implementations." |
| 6 6 | @source_url "https://github.com/cozy-elixir/jxon" |
| 7 7 | |
| @@ -31,7 +31,7 @@ defmodule JXON.MixProject do | |
| 31 31 | # Run "mix help deps" to learn about dependencies. |
| 32 32 | defp deps do |
| 33 33 | [ |
| 34 | - {:jason, ">= 0.0.0", only: [:dev]}, |
| 34 | + {:jason, ">= 0.0.0", optional: true}, |
| 35 35 | {:ex_check, ">= 0.0.0", only: [:dev], runtime: false}, |
| 36 36 | {:credo, ">= 0.0.0", only: [:dev], runtime: false}, |
| 37 37 | {:dialyxir, ">= 0.0.0", only: [:dev], runtime: false}, |