summaryrefslogtreecommitdiff
path: root/tor-netdoc/src/parse/macros.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bunch more new clippy lints in Rust 1.51Nick Mathewson2021-03-291-0/+1
| | | | | | | | The major types are: * You implemented Into when you should have implemented From. * You sliced a slice when you didn't have to. * You said Ok(x?) when you could have said x. * You said Vec::new(); push(); push(); when you could have said vec![].
* Fix Rust-1.51 clippy warnings about acronyms in camel case.Nick Mathewson2021-03-291-0/+2
| | | | This is painful, but we shouldn't have to do it again.
* Migrate from lazy_static to once_cell.Nick Mathewson2020-12-221-5/+4
|
* Netdoc: validate objects even on unrecognized items.Nick Mathewson2020-10-191-0/+2
|
* Document most private items in tor-netdoc.Nick Mathewson2020-10-091-0/+2
|
* More tests on parsing, plus remove dead code.Nick Mathewson2020-09-301-6/+6
|
* Start on some tests for parse::tokenize.rsNick Mathewson2020-09-291-2/+2
|
* Add tests for macros module in tor-netdoc.Nick Mathewson2020-09-291-4/+57
| | | | Also improve output for multi-keyword tokens.
* Move around the modules inside tor-netdoc.Nick Mathewson2020-09-291-0/+88
This change just gives them a more logical breakdown into parsing, documents, and misc other types.