summaryrefslogtreecommitdiff
path: root/tor-netdoc/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add noop_method_call warning.Nick Mathewson2021-05-271-0/+1
| | | | | | This would have saved ahf and me a lot of confusion in debugging a situation where we were cloning a reference of a type that didn't implement Clone.
* Use the "typos" tool to fix some spellingNick Mathewson2021-05-261-1/+1
|
* Enable cargo_common_metadata warning.Nick Mathewson2021-05-251-0/+1
|
* Light tweaks to tor-netdoc.Nick Mathewson2021-05-241-2/+8
|
* Add the "unreachable_pub" lint.Nick Mathewson2021-05-181-0/+1
| | | | | | This is a somewhat obnoxious change in its scope and requirements, but it makes it easier to understand what the real public and private parts of our APIs are.
* Add trait_duplication_in_bounds warning.Nick Mathewson2021-05-031-0/+1
|
* Add unseparated_literal_suffix lint, and fix it.Nick Mathewson2021-05-031-0/+1
|
* Add a few more clippy warningsNick Mathewson2021-05-031-0/+5
|
* Add some more clippy warnings to our list.Nick Mathewson2021-04-271-1/+6
|
* Enforce (and obey) clippy lints about exhaustive enums, structs.Nick Mathewson2021-04-271-0/+4
| | | | | | | | These lints force us to declare our exported enums and exhaustive-looking structs as non-exhaustive (so that we can add to them in the future without breaking our API) or to explicitly disable the warning for a given enum/struct (to say that we _intend_ for additions to be a breaking change).
* Resolve rustdoc warnings.Nick Mathewson2021-03-291-3/+3
|
* More documentation in tor-netdoc.Nick Mathewson2020-10-261-2/+14
|
* Document most private items in tor-netdoc.Nick Mathewson2020-10-091-0/+1
|
* Move around the modules inside tor-netdoc.Nick Mathewson2020-09-291-15/+4
| | | | | This change just gives them a more logical breakdown into parsing, documents, and misc other types.
* netdoc: Parser for microdesc consensus documentsNick Mathewson2020-08-271-0/+1
| | | | | There's more to do here, and things to refactor, but this ought to be enough to get a rudimentary client working.
* Add documentation for authcert parsing.Nick Mathewson2020-06-111-1/+0
|
* Add a couple of commits missing from previous.Nick Mathewson2020-06-091-0/+2
|
* Netdoc: allow parsing multiple routerdescs from a string.Nick Mathewson2020-06-091-0/+15
|
* netdoc: Extract keyword into its own file.Nick Mathewson2020-05-191-0/+1
|
* Implement microdescriptor parsing.Nick Mathewson2020-05-151-0/+1
| | | | | Additionally, move and refactor related types to reduce friction for microdescriptor parsing implementation.
* tor-netdoc: Move RelayFamily into its own module.Nick Mathewson2020-05-151-0/+2
|
* netdoc: rename Position to Pos.Nick Mathewson2020-05-131-1/+1
| | | | We use this type a lot, so let's give it a short name.
* tor-netdoc: require documentation, and fill in final missing docsNick Mathewson2020-05-091-1/+1
|
* Netdoc: remove dead code or annotate it as allowed.Nick Mathewson2020-05-091-1/+0
|
* Document more of 'netdoc', including errors.Nick Mathewson2020-05-091-1/+5
|
* netdoc and version docsNick Mathewson2020-05-081-7/+16
|
* Fresh git repository for work on "arti"Nick Mathewson2020-05-071-0/+28
Arti is a rust tor implementation. It's project I've been working on for a few months now, in weekends and in spare time. It doesn't speak the tor protocol yet, and it doesn't connect to the network at all. It needs much more documentation and testing, but I'm just about ready to show it to others. See the README.md for a description of what is there and what isn't.