This product was not featured by Product Hunt yet. It will not be visible on their landing page and won't be ranked (cannot win product of the day regardless of upvotes).
daegun
An all-in-one text engine in Rust that depends on nothing
Putting text on screen usually means gluing four libraries together: one parses fonts, one shapes scripts, one rasterizes, one subsets. daegun is all four in a single crate that depends on nothing. It shapes Arabic, Devanagari, Khmer and 90+ more scripts, rasterizes on the CPU or the GPU, and cuts an 8 MB font down to 12 KB. Unsafe is forbidden in every parser and the compiler enforces it. A C ABI sits beside the Rust API, not behind it, and the whole thing is no_std.
It started from a small annoyance. Putting text on screen means assembling a stack: one library reads the font, another shapes the script, another draws it, another subsets it. Each drags in its own dependencies, and they do not always agree with each other about what a glyph is.
daegun is all four in one crate that depends on nothing at all. Unsafe code is forbidden in every parser, and the compiler enforces that rather than my discipline, because a font file is data from strangers.
Most of the work went on scripts that do not behave like Latin. Arabic letters change shape depending on their neighbours. Devanagari vowels are typed after the consonant and drawn before it. Khmer stacks subscripts underneath. Getting those right is the whole job.
One detail I am fond of: the first image in the gallery was rendered by daegun. The wordmark, the tagline, all four scripts. The poster and the product are the same thing.
If you have ever fought text rendering, I would like to hear what broke. That is most of what the last stretch has been.
No comment highlights available yet. Please check back later!
About daegun on Product Hunt
“An all-in-one text engine in Rust that depends on nothing”
daegun was submitted on Product Hunt and earned 0 upvotes and 1 comments, placing #65 on the daily leaderboard. Putting text on screen usually means gluing four libraries together: one parses fonts, one shapes scripts, one rasterizes, one subsets. daegun is all four in a single crate that depends on nothing. It shapes Arabic, Devanagari, Khmer and 90+ more scripts, rasterizes on the CPU or the GPU, and cuts an 8 MB font down to 12 KB. Unsafe is forbidden in every parser and the compiler enforces it. A C ABI sits beside the Rust API, not behind it, and the whole thing is no_std.
daegun was featured in Open Source (68.8k followers), Typography (19.3k followers) and Developer Tools (518.5k followers) on Product Hunt. Together, these topics include over 97.7k products, making this a competitive space to launch in.
Who hunted daegun?
daegun was hunted by Taeha. A “hunter” on Product Hunt is the community member who submits a product to the platform — uploading the images, the link, and tagging the makers behind it. Hunters typically write the first comment explaining why a product is worth attention, and their followers are notified the moment they post. Around 79% of featured launches on Product Hunt are self-hunted by their makers, but a well-known hunter still acts as a signal of quality to the rest of the community. See the full all-time top hunters leaderboard to discover who is shaping the Product Hunt ecosystem.
Want to see how daegun stacked up against nearby launches in real time? Check out the live launch dashboard for upvote speed charts, proximity comparisons, and more analytics.
Hi PH, I'm Taeha. I built daegun on my own.
It started from a small annoyance. Putting text on screen means assembling a stack: one library reads the font, another shapes the script, another draws it, another subsets it. Each drags in its own dependencies, and they do not always agree with each other about what a glyph is.
daegun is all four in one crate that depends on nothing at all. Unsafe code is forbidden in every parser, and the compiler enforces that rather than my discipline, because a font file is data from strangers.
Most of the work went on scripts that do not behave like Latin. Arabic letters change shape depending on their neighbours. Devanagari vowels are typed after the consonant and drawn before it. Khmer stacks subscripts underneath. Getting those right is the whole job.
One detail I am fond of: the first image in the gallery was rendered by daegun. The wordmark, the tagline, all four scripts. The poster and the product are the same thing.
If you have ever fought text rendering, I would like to hear what broke. That is most of what the last stretch has been.