1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! [](https://crates.io/crates/syntastic) //! [](https://docs.rs/syntastic) //! [](https://github.com/mx00s/syntastic/actions) //! [](https://coveralls.io/github/mx00s/syntastic?branch=main) //! //! <!-- `README.md` generated from `src/lib.rs` --> //! //! # Thanks //! //! * [Robert Harper](https://www.cs.cmu.edu/~rwh/) for formalizing abstract syntax in //! [_Practical Foundations for Programming Languages_](https://www.cs.cmu.edu/~rwh/pfpl/). //! * [Rust GitHub Template](https://rust-github.github.io/) for helping me set up //! reasonable defaults for this repository. #![deny(missing_docs)] #![deny(clippy::all)] pub mod ast;