shatter

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

lib.rs (449B)


      1 //! This crate is a fast, zero-copy [nostr] content parser. What is a
      2 //! [nostr] content parser? There can be many elements within the body of
      3 //! a note on [nostr], and to render them properly they need to be parsed
      4 //! out. shatter will find all the locations of the elements of interest
      5 //! and mark them so that can pick them out and render them properly.
      6 //!
      7 //! [nostr]: https://github.com/nostr-protocol/nostr
      8 pub mod parser;
      9 pub mod shard;