Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antonlydike/whonicode
unicode lookup tool
https://github.com/antonlydike/whonicode
Last synced: 23 days ago
JSON representation
unicode lookup tool
- Host: GitHub
- URL: https://github.com/antonlydike/whonicode
- Owner: AntonLydike
- Created: 2023-10-14T17:56:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-16T14:30:20.000Z (about 1 year ago)
- Last Synced: 2024-10-30T11:49:31.322Z (2 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# whonicode - unicode lookup tool
This is a unicode lookup tool. This is also my first rust project.
It may (will?) break on you.## Building:
You need to run the following command before you can build the project:
```bash
./generate_index.py --strings --rs >> src/ucd.rs
```This downloads the unicode database and builds the required datastructures.
If you run this command more often, download the `UnicodeData.txt` from the official website:```bash
wget https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
```*Note:* Adding these ~35k lines to the project thoroughly f*cks rust-analyzer.