rust-uchardet elixir port

rust-uchardetのElixir Portです。

install

def deps do
  [
    {:elixir_encoding_detect, "~> 0.1.0"}
  ]
end

使い方

{:ok, file} = File.read("priv/textfile")

{:ok, "encoding-name"} = UchardetModule.detect_encoding_name(file)