Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonbrad committed Feb 9, 2024
1 parent 43c0917 commit 8663f05
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/translator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Enhance the language processing tasks within in input method engine.

### Features
- rhai: Enable the usage of the rhai scripting language.
- rhai: Enables the usage of the rhai scripting language.
- rhai-wasm: Like rhai, but wasm compatible.
- strsim: Enable the text similarity algorithm.
- strsim: Enables the text similarity algorithm for better predictions.
10 changes: 10 additions & 0 deletions engine/translator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
//! **Note**: We use [`IndexMap`](indexmap::IndexMap) instead of [`HashMap`](std::collections::HashMap) for better performance
//! when dealing with big datasets.
//!
//! ### Feature flags
//!
//! To reduce the amount of compiled code in the crate, you can enable feature manually. This is
//! done by adding `default-features = false` to your dependency specification. Below is a list of
//! the features available in this crate.
//!
//! * `rhai`: Enables the usage of rhai script files.
//! * `rhai-wasm`: Like rhai, but wasm compatible.
//! * `strsim`: Enables the text similarity algorithm for better predictions.
//!
//! # Example
//!
//! ```
Expand Down

0 comments on commit 8663f05

Please sign in to comment.