ruroonga 0.5.0

A Rust language binding for Groonga.
Documentation

Ruroonga

Build Status Build status

Documentation

A Rust lang binding for Groonga.

Rust + Groonga = Ruroonga!

Target Rust Version

  • 1.11.0 or later.

Dependencies

  • Groonga 5.0.2 or later.

Japanese pronunciation

Ruroonga(るーるんが)

For Windows

If you try to use this crate on Windows, please set the following environment variables:

* GROONGA_INCLUDE_DIR
* GROONGA_LIB_DIR
* GROONGA_BIN_DIR

If you install Groonga in C:\Groonga, above variables should set like this:

PS> $Env:GROONGA_INCLUDE_DIR = "C:\Groonga\include"
PS> $Env:GROONGA_LIB_DIR = "C:\Gronga\lib"
PS> $Env:GROONGA_BIN_DIR = "C:\Groonga\bin"

For now, Groonga project does not provide MSVC compatible executables and binaries, you should use x86_64-pc-windows-gnu target instead of x86_64-pc-windows-msvc.

If you use rustup, execute the following command:

PS> rustup default stable-gnu

If you want to use x86_64-pc-windows-msvc target, please try to compile Groonga with MSVC by yourself. In more detail, please refer to the build from source section for Windows.

LICENSE

LGPL-2.1.