ejdict-rs

Build and test ejdict<em>rs at crates.io ejdict</em>rs at docs.rs MIT licensed

This library is an English-Japanese dictionary that can be used via implemented API by Rust language.

DEMO DEMO

Overview

This library is available through a simple API. Since the dictionary data to be referenced is embedded in this crate, The Japanese-English dictionary can be used immediately by simply obtaining the crate from crates.io without depending on the database or file.

The dictionary data of this library is "ejdict" which is a public domain dictionary. See the following URL for details.

https://github.com/kujirahand/EJDict

Examples

This library is used through two functions.

case1: Look up words from dictionary.

```rust use ejdict_rs::SearchMode;

fn main() -> ejdictrs::Result<()> { let word = ejdictrs::look("apple", SeachMode::Exact)?; assert_eq!(word.mean(), "『リンゴ』;リンゴの木"); Ok(()) } ```

case2: Candidate list from dictionary.

```rust use ejdict_rs::SearchMode;

fn main() -> ejdictrs::Result<()> { let candidates = ejdictrs::candidates("apple", SeachMode::Fuzzy)?; for word in candidates { // something ... } Ok(()) } ```

Install

Write the following contents in Cargo.toml.

toml [dependencies] ejdict_rs = "0.0.1"

If you use the development version or a specific version, write as follows.

toml [dependencies] ejdict_rs = { git = "https://github.com/tomo3110/ejdict-rs" }

For details, check the following URL.

https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories

Dependencies

Thanks for the great crates and dictionary data.

License

This software is under MIT License.

Author

tomo3110