diff --git a/Cargo.toml b/Cargo.toml index a13ff17..f084a59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,5 +4,4 @@ members = [ "runtime", "rust", "libextism", - "elixir/native/extism_nif" ] diff --git a/elixir/mix.exs b/elixir/mix.exs index f0e1ea7..6e00379 100644 --- a/elixir/mix.exs +++ b/elixir/mix.exs @@ -4,7 +4,7 @@ defmodule Extism.MixProject do def project do [ app: :extism, - version: "0.3.0", + version: "0.3.2", elixir: "~> 1.12", start_permanent: Mix.env() == :prod, deps: deps(), diff --git a/elixir/native/extism_nif/Cargo.toml b/elixir/native/extism_nif/Cargo.toml index 8dc348a..7e26b2a 100644 --- a/elixir/native/extism_nif/Cargo.toml +++ b/elixir/native/extism_nif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extism_nif" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Benjamin Eckel "] @@ -9,7 +9,10 @@ name = "extism_nif" path = "src/lib.rs" crate-type = ["cdylib"] +# need this to be here and be empty +[workspace] + [dependencies] rustler = "0.28.0" -extism = { version = "0.3.0", path = "../../../rust", package = "extism" } +extism = "0.3.0" log = "0.4"