Elixir wrapper for Awabi, a morphological analyzer using MeCab dictionary, written in Rust.
Additional doc can be found at https://hexdocs.pm/exawabi.
- MeCab and related dictionary.
- Rust for compiling Rust's Natively Implemented Function (NIF) binding.
$ sudo apt install mecab mecab-ipadic-utf8
$ brew install mecab
$ brew install mecab-ipadic
The package can be installed by adding exawabi
to your list of dependencies
in mix.exs
:
def deps do
[
{:exawabi, "~> 0.2.1"}
]
end