shatter

A fast, zero-copy nostr content parser in Rust
git clone git://jb55.com/shatter
Log | Files | Refs | README

commit 8c948d4886f714d484865d6232149ac073b4fe89
parent 9d38ffe0346e83d40b77547496629255c0b7d18b
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  3 Jul 2023 10:30:27 -0700

lib: add parser

Diffstat:
Msrc/lib.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/lib.rs b/src/lib.rs @@ -5,4 +5,5 @@ //! and mark them so that can pick them out and render them properly. //! //! [nostr]: https://github.com/nostr-protocol/nostr +pub mod parser; pub mod shard;