subtext 0.3.3

A parser for the Subtext file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Rust Subtext

This workspace contains Rust packages and applications for working with Subtext.

The first package is a protoype recursive descent parser that attempts to
interpret a byte buffer as Subtext. The parser's only dependency is
[Tendril](https://github.com/servo/tendril), which it leverages to ergonomically
slice strings while minimizing copies.

To run tests: `cargo test`
To try the example: `cargo run --example parse examples/example.subtext`