Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tianyishi2001/romkan
A Romaji/Kana conversion library for Rust
https://github.com/tianyishi2001/romkan
Last synced: about 1 month ago
JSON representation
A Romaji/Kana conversion library for Rust
- Host: GitHub
- URL: https://github.com/tianyishi2001/romkan
- Owner: TianyiShi2001
- License: mit
- Created: 2021-06-17T20:02:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-17T22:24:32.000Z (over 3 years ago)
- Last Synced: 2024-09-17T14:34:04.070Z (about 2 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# romkan
A Romaji/Kana conversion library written in pure Rust, based on [python-romkan](https://github.com/soimort/python-romkan)
## Availablity
Available on crates.io. MIT License.
## Usage
```rust
use romkan::Romkan;fn main() {
println!("{}", "kyouhatennkigaiidesune".to_hiragana());
// きょうはてんきがいいですね
println!("{}", "きょうはてんきがいいですね".to_romaji());
// kyouhatenkigaiidesune
}
```