summaryrefslogtreecommitdiff
path: root/crates/tor-guardmgr
Commit message (Expand)AuthorAgeFilesLines
* Bump all arti*, tor* crates to 0.2.0Nick Mathewson2022-04-011-16/+16
* Use derive_more to derive AsRef.Nick Mathewson2022-03-302-12/+4
* Reformat tor-guardmgr/Cargo.toml.Nick Mathewson2022-03-301-18/+18
* Fix some Rustdoc links.Nick Mathewson2022-03-304-5/+5
* Refactor FirstHopId into type-differentiated formNick Mathewson2022-03-307-169/+322
* Rename Guard=>FirstHop, GuardId=>FirstHopIdNick Mathewson2022-03-306-70/+84
* FallbackState: Use itertools::merge_join_by.Nick Mathewson2022-03-301-100/+8
* Fold fallback::Status::reset() into its (only) caller.Nick Mathewson2022-03-301-7/+2
* Rename FallbackState::lookup_mut => get_mut.Nick Mathewson2022-03-301-12/+12
* Rename FallbackSet => FallbackState.Nick Mathewson2022-03-303-15/+15
* Refactor select_guard_with_expand to use match and log errors.Nick Mathewson2022-03-301-10/+13
* ListKind: Use an exhaustive match to future-proof.Nick Mathewson2022-03-301-1/+4
* Clarify documentation about GuardUsable constructorsNick Mathewson2022-03-301-4/+10
* Add a TODO about an unslightly type.Nick Mathewson2022-03-301-0/+2
* Clean up a rustdoc linkIan Jackson2022-03-301-1/+1
* guardmgr::fallback::set: basic unit tests.Nick Mathewson2022-03-301-10/+190
* Rename ExternalFailure => ExternalActivity.Nick Mathewson2022-03-302-11/+10
* Replace the fallback directories when they change in the config.Nick Mathewson2022-03-302-0/+122
* Add status tracking to FallbackDir.Nick Mathewson2022-03-305-24/+260
* GuardMgr: Return fallback directories when appropriate.Nick Mathewson2022-03-301-26/+67
* Fix typos in guardmgr/lib.rsNick Mathewson2022-03-301-2/+2
* GuardMgr: some prep work for returning fallbacks as guards.Nick Mathewson2022-03-303-4/+40
* Turn FallbackList into a real type, and store one in GuardMgr.Nick Mathewson2022-03-304-5/+85
* guardmgr: move error types into new err.rs module.Nick Mathewson2022-03-303-73/+79
* Move fallback.rs into guardmgr.Nick Mathewson2022-03-302-0/+87
* Remove allow(clippy::disallowed_methods) lint.Nick Mathewson2022-03-303-18/+0
* Merge branch 'no-system-time' into 'main'eta2022-03-303-6/+28
|\
| * use wallclock where possible in teststrinity-1686a2022-02-263-6/+28
* | GuardMgr:: generalize GuardId::from_relay.Nick Mathewson2022-03-213-6/+10
* | GuardMgr: new API to record guard problems from outside the crate.Nick Mathewson2022-03-212-11/+44
* | GuardMgr: revise handling of "all guards are down".Nick Mathewson2022-03-213-21/+62
* | GuardMgr: use decorrelated-jitter backoff for retrying guards.Nick Mathewson2022-03-211-80/+34
* | derive_builder: Switch to upstream 0.11Ian Jackson2022-03-161-1/+1
* | humantime: Update to humantime-serde 1.1.1Ian Jackson2022-03-141-1/+1
* | Use git source for derive_builder for now, for attrs featureIan Jackson2022-03-071-1/+1
* | Move skip_fmt into tor-basic-utilsIan Jackson2022-03-042-2/+2
* | Replace manual Default impls with educe in tor-guardmgrIan Jackson2022-03-023-21/+13
* | Replace manual Debug impl with educe in tor-guardmgrIan Jackson2022-03-022-11/+9
* | Merge branch 'clippy-allow-arc-clone' into 'main'Nick Mathewson2022-03-011-1/+0
|\ \
| * | Disable clippy::clone_on_ref_ptrIan Jackson2022-02-241-1/+0
| |/
* | Bump all crates to 0.1.0arti-v0.1.0Nick Mathewson2022-03-011-15/+15
* | Merge branch 'always-coarsetime' into 'main'eta2022-02-281-1/+1
|\ \
| * | Make coarsetime dependency and traffic-timestamping non-optional.Nick Mathewson2022-02-251-1/+1
| |/
* / impl Debug for various internal typesIan Jackson2022-02-251-0/+11
|/
* Remove clippy::needless_borrow exception in CI.Nick Mathewson2022-02-201-1/+0
* Change deny(clippy::all) to warn(clippy::all).Nick Mathewson2022-02-141-1/+1
* Add TODOs on uncertain points about time_since_last_trafficNick Mathewson2022-02-091-0/+1
* Remove the use of Mutex in channel unused_since timestampYuan Lyu2022-02-081-5/+10
* Make SpawnError wrappers contain a 'spawning' stringNick Mathewson2022-02-041-11/+25
* errors: impl HasKind for GuardMgrErrorIan Jackson2022-02-041-0/+12