diff --git a/.gitignore b/.gitignore index a5c5d75..f2c13ff 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,6 @@ xav-*.tar /tmp/ .vscode/ -ffmpeg_build/ \ No newline at end of file +ffmpeg_build/ +.elixir_ls/ +_dialyzer/ \ No newline at end of file diff --git a/README.md b/README.md index b5db410..66e654b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,9 @@ Make sure you have installed FFMpeg (ver. 4.x - 7.x) development packages on you ```elixir def deps do [ - {:xav, "~> 0.5.1"} + {:xav, "~> 0.6.0"}, + # Add Nx if you want to have Xav.Frame.to_nx/1 + {:nx, ">= 0.0.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 92418a3..156708a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Xav.MixProject do use Mix.Project - @version "0.5.1" + @version "0.6.0" @source_url "https://github.com/elixir-webrtc/xav" def project do @@ -22,7 +22,8 @@ defmodule Xav.MixProject do # dialyzer dialyzer: [ plt_local_path: "_dialyzer", - plt_core_path: "_dialyzer" + plt_core_path: "_dialyzer", + plt_add_apss: [:nx] ], # code coverage