Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cosmo0920/ruroonga
A Rust language binding for Groonga.
https://github.com/cosmo0920/ruroonga
binding groonga rust
Last synced: 3 months ago
JSON representation
A Rust language binding for Groonga.
- Host: GitHub
- URL: https://github.com/cosmo0920/ruroonga
- Owner: cosmo0920
- License: lgpl-2.1
- Created: 2015-04-22T15:18:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-17T05:37:43.000Z (over 6 years ago)
- Last Synced: 2024-09-17T10:29:58.402Z (4 months ago)
- Topics: binding, groonga, rust
- Language: Rust
- Homepage:
- Size: 989 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ruroonga
===
[![Build Status](https://travis-ci.org/cosmo0920/ruroonga.svg?branch=master)](https://travis-ci.org/cosmo0920/ruroonga)
[![](http://meritbadge.herokuapp.com/ruroonga)](https://crates.io/crates/ruroonga)
[![Build status](https://ci.appveyor.com/api/projects/status/jhibfy8rr7rtpv7h/branch/master?svg=true)](https://ci.appveyor.com/project/cosmo0920/ruroonga/branch/master)[Documentation](http://cosmo0920.github.io/ruroonga/ruroonga/index.html)
A Rust lang binding for Groonga.
Rust + Groonga = Ruroonga!
### Target Rust Version
* 1.11.0 or later.
### Dependencies
* Groonga 6.0.8 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:
```powershell
PS> $Env:GROONGA_INCLUDE_DIR = "C:\Groonga\include"
PS> $Env:GROONGA_LIB_DIR = "C:\Groonga\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:
```powershell
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](http://groonga.org/docs/install/windows.html#build-from-source).### LICENSE
#### Source code
[LGPL-2.1](LICENSE).
#### Slide
[CC BY-NC-SA 2.0](https://creativecommons.org/licenses/by-nc-sa/2.0/).