| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add version="0.0.0" to dependencies that were missing it | Nick Mathewson | 2021-06-24 | 1 | -3/+3 |
| | | |||||
| * | Remove "publish = false" | Nick Mathewson | 2021-06-24 | 1 | -1/+0 |
| | | |||||
| * | linkspec: Define owned variants of ChanTarget and CircTarget. | Nick Mathewson | 2021-06-13 | 3 | -0/+133 |
| | | |||||
| * | Add noop_method_call warning. | Nick Mathewson | 2021-05-27 | 1 | -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. | ||||
| * | Enable cargo_common_metadata warning. | Nick Mathewson | 2021-05-25 | 1 | -0/+1 |
| | | |||||
| * | Add automatically generated README.md files to each crate. | Nick Mathewson | 2021-05-25 | 1 | -0/+41 |
| | | |||||
| * | fix a doc link in tor-linkspec. | Nick Mathewson | 2021-05-24 | 1 | -1/+1 |
| | | |||||
| * | improve crate docs for tor-linkspec | Nick Mathewson | 2021-05-24 | 1 | -4/+36 |
| | | |||||
| * | Give every Cargo.toml a repository field | Nick Mathewson | 2021-05-19 | 1 | -0/+1 |
| | | |||||
| * | Fill in "package.categories" on all Cargo.toml | Nick Mathewson | 2021-05-19 | 1 | -0/+1 |
| | | |||||
| * | Add the "unreachable_pub" lint. | Nick Mathewson | 2021-05-18 | 1 | -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. | ||||
| * | Fix some warnings from nightly clippy | Nick Mathewson | 2021-05-07 | 1 | -4/+1 |
| | | |||||
| * | Add trait_duplication_in_bounds warning. | Nick Mathewson | 2021-05-03 | 1 | -0/+1 |
| | | |||||
| * | Add unseparated_literal_suffix lint, and fix it. | Nick Mathewson | 2021-05-03 | 1 | -0/+1 |
| | | |||||
| * | Add a few more clippy warnings | Nick Mathewson | 2021-05-03 | 1 | -0/+5 |
| | | |||||
| * | Add some more clippy warnings to our list. | Nick Mathewson | 2021-04-27 | 1 | -1/+6 |
| | | |||||
| * | Enforce (and obey) clippy lints about exhaustive enums, structs. | Nick Mathewson | 2021-04-27 | 1 | -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). | ||||
| * | Fix a bunch more new clippy lints in Rust 1.51 | Nick Mathewson | 2021-03-29 | 1 | -3/+4 |
| | | | | | | | | | 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 Mathewson | 2021-03-29 | 2 | -7/+7 |
| | | | | | This is painful, but we shouldn't have to do it again. | ||||
| * | Rename Rsa{Identity,Signature} to fix clippy warning. | Nick Mathewson | 2021-03-29 | 2 | -10/+10 |
| | | |||||
| * | Add the tor project as an author. | Nick Mathewson | 2021-03-17 | 1 | -1/+1 |
| | | |||||
| * | Add keywords to each Cargo.toml | Nick Mathewson | 2021-03-17 | 1 | -0/+1 |
| | | |||||
| * | Add a description field to all our Cargo.toml files | Nick Mathewson | 2021-03-17 | 1 | -0/+1 |
| | | |||||
| * | Give it a homepage everyplace. | Nick Mathewson | 2021-03-17 | 1 | -0/+1 |
| | | |||||
| * | Change how we sort link specifiers in extend cells | Nick Mathewson | 2021-03-04 | 1 | -7/+6 |
| | | | | | | Instead of implementing a dubious PartialOrd for link spec, add a sorting function and call that explicitly. | ||||
| * | Improvements to Relay type in tor-netdir. | Nick Mathewson | 2020-10-19 | 2 | -8/+24 |
| | | | | | | | | | | | | Now, a Relay is always valid. This required some changes to the API: all_relays() has to return a new UncheckedRelay type that might or might not be valid, and the functions on Relay and ChanTarget that return ed25519 identities need to return an Ed25519Identity, not an ed25519::PublicKey. This change required some new encoding/decoding/conversion functions on Ed25519Identity. | ||||
| * | Explain problems with APIs in linkspec::traits. | Nick Mathewson | 2020-10-18 | 1 | -2/+6 |
| | | |||||
| * | Mark must-resolve XXXX issues with "XXXXM3". | Nick Mathewson | 2020-10-18 | 1 | -2/+2 |
| | | | | | | | | | | | "M3" is for "milestone 3" -- my target to fix the technical debt that I think will be bad if we ship even a pre-alpha with it. These aren't necessarily _all_ must-resolve, but they're all must-look-at. Closes #15 | ||||
| * | tor-linkspec: remove a completed TODO | Nick Mathewson | 2020-10-18 | 1 | -2/+0 |
| | | |||||
| * | Tests for CircTarget::linkspecs() | Nick Mathewson | 2020-09-28 | 1 | -0/+89 |
| | | |||||
| * | Rename some identifiers in tor-linkspec. | Nick Mathewson | 2020-09-28 | 1 | -9/+9 |
| | | | | | By convention, rust accessor functions don't start with 'get'. | ||||
| * | Rename ExtendTarget to CircTarget. | Nick Mathewson | 2020-09-28 | 2 | -3/+3 |
| | | |||||
| * | Add test vectors for a few relay message types. | Nick Mathewson | 2020-09-26 | 1 | -1/+6 |
| | | | | | | I generated these by running an instrumented version of Tor through chutney. | ||||
| * | Run cargo upgrade. | Nick Mathewson | 2020-09-26 | 1 | -1/+1 |
| | | |||||
| * | Document private members in most crates | Nick Mathewson | 2020-09-24 | 3 | -2/+12 |
| | | |||||
| * | A few tests for tor-linkspec | Nick Mathewson | 2020-09-23 | 2 | -0/+68 |
| | | |||||
| * | Sort linkspecs in the same order as tor does | Nick Mathewson | 2020-09-17 | 2 | -2/+24 |
| | | |||||
| * | Make more types implement Debug. | Nick Mathewson | 2020-09-12 | 1 | -0/+1 |
| | | |||||
| * | New "linkspec" module to encapsulate info needed to connect/extend. | Nick Mathewson | 2020-09-08 | 4 | -0/+177 |
