about summary refs log tree commit diff stats
path: root/res/map/idna_gen.nim
Commit message (Collapse)AuthorAgeFilesLines
* url: reduce idna sizebptato2024-09-011-2140/+1145
| | | | | Instead of storing pointers to cstrings, put all of them in a single huge string and store indices of that.
* misc refactoringsbptato2024-02-271-4/+0
| | | | | | * rename buffer enums * fix isAscii for char 0x80 * remove dead code from URL
* idna: use pre-generated map file, misc changesbptato2024-01-041-0/+2419
Speeds up compilation somewhat. Included in the repository because it's not that huge. misc changes: * use seq, not set for UCS-16 sets (it takes up less space) * remove unnecessary noSideEffects casts