[package] name = "ejdict_rs" version = "0.0.4" authors = ["tomo3110 "] description = "This library is an English-Japanese dictionary that can be used via implemented API by Rust language." repository = "https://github.com/tomo3110/ejdict-rs" readme = "README.md" license = "MIT" keywords = [ "dictionary", "english", "japanese", ] edition = "2018" build = "build.rs" [lib] name = "ejdict_rs" path = "src/lib.rs" [dependencies] ejdict_rs_core = { path = "crates/core", version = "0.0.3" } failure = "0.1" lazy_static = "1" serde_json = "1" [build-dependencies] ejdict_rs_core = { path = "crates/core", version = "0.0.3" } serde_json = "1" [workspace] members = [ "crates/core", "crates/cli", ]