| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | List version 0.0.0 for tor-llcrypto dependency in tor-bytes | Nick Mathewson | 2021-06-24 | 1 | -1/+1 |
| | | |||||
| * | Remove "publish = false" | Nick Mathewson | 2021-06-24 | 1 | -1/+0 |
| | | |||||
| * | 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/+52 |
| | | |||||
| * | tor-bytes: fuzzer for Reader code. | Nick Mathewson | 2021-05-24 | 3 | -0/+103 |
| | | |||||
| * | tor-bytes: Fix possible panic in truncate. | Nick Mathewson | 2021-05-24 | 2 | -4/+18 |
| | | |||||
| * | Improve tor-bytes crate-level documentation. | Nick Mathewson | 2021-05-24 | 1 | -13/+38 |
| | | |||||
| * | Give every Cargo.toml a repository field | 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. | ||||
| * | Upgrade to latest RustCrypto crates. | Nick Mathewson | 2021-05-06 | 1 | -1/+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 | 2 | -2/+3 |
| | | |||||
| * | 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/+3 |
| | | | | | | | | | 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). | ||||
| * | Rename Rsa{Identity,Signature} to fix clippy warning. | Nick Mathewson | 2021-03-29 | 1 | -6/+6 |
| | | |||||
| * | Add appropriate categories to some Cargo.toml files. | Nick Mathewson | 2021-03-17 | 1 | -0/+1 |
| | | |||||
| * | 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 |
| | | |||||
| * | Update some dependencies. | Nick Mathewson | 2021-02-19 | 1 | -1/+1 |
| | | |||||
| * | Migrate from futures_codec to asynchronous_codec. | Nick Mathewson | 2021-01-15 | 1 | -2/+1 |
| | | | | | | | | | asynchronous_codec is a fork of futures_codec that is up-to-date on its dependencies. This migration allows us to upgrade to the current version of the bytes crate. | ||||
| * | Upgrade a few more dependencies. | Nick Mathewson | 2021-01-13 | 1 | -1/+1 |
| | | |||||
| * | cargo upgrade. | Nick Mathewson | 2020-12-30 | 1 | -1/+1 |
| | | |||||
| * | Upgrade dependencies | Nick Mathewson | 2020-11-10 | 1 | -1/+1 |
| | | |||||
| * | Run "cargo upgrade". | Nick Mathewson | 2020-10-26 | 1 | -1/+2 |
| | | |||||
| * | Add a test for Reader::advance | Nick Mathewson | 2020-10-21 | 1 | -0/+11 |
| | | |||||
| * | Improvements to Relay type in tor-netdir. | Nick Mathewson | 2020-10-19 | 1 | -0/+12 |
| | | | | | | | | | | | | 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. | ||||
| * | Run "cargo upgrade". | Nick Mathewson | 2020-10-15 | 1 | -1/+1 |
| | | |||||
| * | Document private members in most crates | Nick Mathewson | 2020-09-24 | 4 | -2/+9 |
| | | |||||
| * | Run cargo fix --edition-idioms | Nick Mathewson | 2020-09-21 | 1 | -1/+1 |
| | | |||||
| * | More tests for tor_bytes::impl | Nick Mathewson | 2020-09-15 | 1 | -1/+25 |
| | | |||||
| * | tor_bytes: Remove an extraneous println | Nick Mathewson | 2020-09-15 | 1 | -4/+2 |
| | | |||||
| * | bytes: add tests for impl.rs | Nick Mathewson | 2020-09-15 | 1 | -0/+113 |
| | | |||||
| * | bytes: add tests for Writer trait | Nick Mathewson | 2020-09-14 | 2 | -0/+56 |
| | | |||||
| * | bytes: more test for Reader. | Nick Mathewson | 2020-09-14 | 1 | -4/+86 |
| | | |||||
| * | tor_bytes::Reader: fix a bug in truncate. | Nick Mathewson | 2020-09-12 | 1 | -1/+1 |
| | | |||||
| * | Pare down and sort dependencies | Nick Mathewson | 2020-09-09 | 1 | -3/+3 |
| | | |||||
| * | Run cargo upgrade, except for stream-cipher. | Nick Mathewson | 2020-09-09 | 1 | -1/+1 |
| | | |||||
| * | Implement most of client-side channel cert validation. | Nick Mathewson | 2020-09-09 | 1 | -2/+4 |
| | | |||||
| * | Fix clippy warnings; improve key type for consensus. | Nick Mathewson | 2020-09-07 | 2 | -2/+0 |
| | | |||||
| * | tor-bytes: Add initial support for the bytes crate | Nick Mathewson | 2020-09-05 | 3 | -0/+17 |
| | | |||||
| * | Migrate certificate and routerdesc checking to tor-checkable | Nick Mathewson | 2020-09-03 | 1 | -1/+1 |
| | | | | | | Now these types are parsed and returned wrapped inside a checkable object. | ||||
| * | Run cargo-upgrade. | Nick Mathewson | 2020-08-28 | 1 | -4/+4 |
| | | |||||
| * | Update to latest packages; ed25519 now needs signature crate traits. | Nick Mathewson | 2020-07-20 | 2 | -7/+9 |
| | | |||||
| * | Run "cargo update". | Nick Mathewson | 2020-06-21 | 1 | -1/+1 |
| | | |||||
| * | Use "cargo upgrade" from cargo-edit to list current versions | Nick Mathewson | 2020-06-12 | 1 | -5/+5 |
| | | |||||
| * | update to use latest rust-crypto traits and modules | Nick Mathewson | 2020-06-10 | 2 | -9/+7 |
| | | |||||
