| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | tor-memquota: Erase the CoarseTimeProvider from mq_queue::Sender (fmt) | Ian Jackson | 2024-09-26 | 1 | -1/+6 | |
| | | | ||||||
| | * | tor-memquota: Erase the CoarseTimeProvider from mq_queue::Sender | Ian Jackson | 2024-09-26 | 3 | -14/+17 | |
| | | | | | | | | | | | | | | | | | | | | | Use tor_rtcompat::DynTimeProvider instead. Ultimately, we're going to want one of these in Channel etc. The CoarseTimeProvider generic argument then becomes pervasive. Instead, erase it. This will involve an indirect function call each time an item is inserted. I think that can't be helped. | |||||
| | * | tor-memquota: mq_queue: Take Account by reference | Ian Jackson | 2024-09-26 | 1 | -5/+5 | |
| | | | | | | | | | | | | | It doesn't need an owned value here. (clippy's note about this was defeated by this being a trait method.) | |||||
| * | | Merge branch 'misc' into 'main' | Ian Jackson | 2024-10-01 | 2 | -0/+38 | |
| |\ \ | | | | | | | | | | | | | Miscellaneous cleanups, mostly in tor-memquota See merge request tpo/core/arti!2461 | |||||
| | * | | tor-memquota: Clarify that mq isn't the accountholder | Ian Jackson | 2024-09-26 | 1 | -0/+4 | |
| | | | | ||||||
| | * | | tor-memquota: Provide Account::new_child | Ian Jackson | 2024-09-26 | 1 | -0/+15 | |
| | | | | ||||||
| | * | | tor-memquota: provide Account::new_noop | Ian Jackson | 2024-09-26 | 1 | -0/+7 | |
| | | | | | | | | | | | | | This will be useful in tests. | |||||
| | * | | tor-memquota: impl FusedStream for Receiver, where appropriate | Ian Jackson | 2024-09-26 | 1 | -0/+12 | |
| | | | | ||||||
| * | | | Bump arti- and tor- crates to 0.23.0 | Nick Mathewson | 2024-09-30 | 1 | -10/+10 | |
| | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | Per our policy, every one of these gets a minor bump. Generated with: ``` for crate in $(./maint/list_crates | grep '^\(tor\|arti\)-' ); do cargo set-version --bump minor -p $crate; done ``` (Note the use of `-` at the end end of the grep pattern to prevent matching the `arti` crate.) | |||||
| * | | Merge branch 'msrv-1.77-and-rusqlite-update' into 'main' | David Goulet | 2024-09-26 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | | | | | Upgrade MSRV to 1.77 , and rusqlite to 0.32.1 See merge request tpo/core/arti!2451 | |||||
| | * | | Upgrade MSRV to 1.77 | Nick Mathewson | 2024-09-25 | 1 | -1/+1 | |
| | |/ | | | | | | | This will allow us to upgrade to the latest version of rusqlite. | |||||
| * / | Upgrade to derive_more version 1.0.0 | Nick Mathewson | 2024-09-25 | 5 | -7/+6 | |
| |/ | | | | | | The `derive_more` crate broke backward compatibility with this version, so this change involved quite a few manual fixups. With luck, they'll keep compatibility for some while in the future. | |||||
| * | Merge branch 'mq-tidy' into 'main' | David Goulet | 2024-09-17 | 7 | -5/+80 | |
| |\ | | | | | | | | | memquota: be more firm about avoiding panics, and tidy up docs See merge request tpo/core/arti!2404 | |||||
| | * | tor-memquota: queue plan: Add a cross-reference | Ian Jackson | 2024-09-10 | 1 | -0/+3 | |
| | | | ||||||
| | * | tor-memquota: queue plan: Clean up intent and make into a doc comment | Ian Jackson | 2024-09-10 | 1 | -32/+24 | |
| | | | | | | | | | Remove extraneous text, wrap it, and change to a more declarative style. | |||||
| | * | tor-memquota: queue plan: Copy from !1997 discussion | Ian Jackson | 2024-09-10 | 1 | -0/+32 | |
| | | | ||||||
| | * | tor-memquota: Worsify formatting to stop rustfmt making it even worse | Ian Jackson | 2024-09-10 | 1 | -1/+3 | |
| | | | ||||||
| | * | tor-memquota: Use clippy::arithmetic_side_effects, against panics | Ian Jackson | 2024-09-10 | 4 | -0/+12 | |
| | | | | | | | | | | | | | This detect possibly-panicking operations. Empirically this lint seems rather better now. | |||||
| | * | tor-memquota: Document that we're panic-free | Ian Jackson | 2024-09-10 | 1 | -0/+10 | |
| | | | ||||||
| | * | tor-memquota: Avoid a perhaps-impossible division-by-zero (fmt) | Ian Jackson | 2024-09-10 | 1 | -1/+5 | |
| | | | ||||||
| | * | tor-memquota: Avoid a perhaps-impossible division-by-zero | Ian Jackson | 2024-09-10 | 1 | -1/+3 | |
| | | | | | | | | | | | | | It is not locally obvious that n_particips can't be zero, here. Certainly if it *is* that would be state corruption, but I don't think I can quite rule it out in the presence of a bug somewhere else. | |||||
| | * | tor-memquota: Use a const to hoist a panic to compile-time | Ian Jackson | 2024-09-10 | 1 | -1/+3 | |
| | | | ||||||
| | * | tor-memquota: Use checked_sub .. expect in two places (fmt) | Ian Jackson | 2024-09-10 | 1 | -2/+6 | |
| | | | ||||||
| | * | tor-memquota: Use checked_sub .. expect in two places | Ian Jackson | 2024-09-10 | 1 | -2/+6 | |
| | | | | | | | | | | | In these two places, underflow is statically impossible, but demonstrating that to the compiler is probably too onerous. | |||||
| | * | tor-memquota: Move some information into the proper docs | Ian Jackson | 2024-09-10 | 1 | -0/+8 | |
| | | | | | | | | | | | This sentence is very important piece of overall explanation, but didn't make it into the crate level docs. | |||||
| * | | Bump MSRV from 1.70 to 1.75. | Wesley Aptekar-Cassels | 2024-09-16 | 1 | -1/+1 | |
| |/ | ||||||
| * | Fix typo in tor_memquota::ConfigBuilder doc | Ian Jackson | 2024-09-04 | 1 | -1/+1 | |
| | | | | | | As per https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2374#note_3070500 | |||||
| * | tor-memquota: Provide reconfigure method | Ian Jackson | 2024-09-04 | 2 | -1/+56 | |
| | | ||||||
| * | tor-memquota: Break out reclamation wakeup | Ian Jackson | 2024-09-04 | 1 | -1/+6 | |
| | | ||||||
| * | tor-memquota: Make reclamation wakeup no longer throw internal errors | Ian Jackson | 2024-09-04 | 2 | -5/+6 | |
| | | | | | I realised a way this could happen without there being a bug. | |||||
| * | tor-memquota: Unstable cargo feature for exposing info for testing | Ian Jackson | 2024-09-04 | 3 | -3/+26 | |
| | | ||||||
| * | tor-memquota: Rework optionality configuration | Ian Jackson | 2024-09-04 | 6 | -31/+86 | |
| | | | | | | | | | | | | | | | | | | | Allow a `Config` to represent "this is supposed to be disabled". This involves wrapping the actual built configuration in an IfEnabled. We treat max = usize::MAX, or max being unspecified, as "disable". We can now reporting an error during config building if max is set but we're compiling the feature out. Conversely, we can now make `MemoryQuotaTracker::new()` unconditional, since enabled confiogurations are uninhabited when the feature is compiled out. We change how we derive the setters, deriving them from the Builder. I chose to abolish the use of derive_builder. See the new comment on ConfigBuilder. | |||||
| * | tor-memquota: impl PartialEq for IfEnabled and EnabledToken | Ian Jackson | 2024-09-04 | 1 | -2/+4 | |
| | | ||||||
| * | tor-memquota: Add unit tests for config handling | Ian Jackson | 2024-09-04 | 2 | -0/+57 | |
| | | | | | | We're about to change the config behaviour; adding these tests first allows us to demonstrate the changes. | |||||
| * | Bump all the unstable tor- and arti- crates to 0.22.0. | Gabriela Moldovan | 2024-09-03 | 1 | -10/+10 | |
| | | | | | | | | | | | Done using: ``` for crate in $(./maint/list_crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.22.0 done ``` | |||||
| * | Fix formatting issues introduced by fixup-features. | Gabriela Moldovan | 2024-09-03 | 1 | -1/+8 | |
| | | ||||||
| * | Run fixup-features in preparation for release. | Gabriela Moldovan | 2024-09-03 | 1 | -1/+1 | |
| | | ||||||
| * | Fix typos | Dimitris Apostolou | 2024-09-03 | 6 | -15/+15 | |
| | | ||||||
| * | Move stream_peek into tor-async-utils | Jim Newsome | 2024-08-29 | 3 | -514/+3 | |
| | | ||||||
| * | Expose StreamUnobtrusivePeeker::as_raw_inner_pin_mut | Jim Newsome | 2024-08-27 | 1 | -1/+1 | |
| | | ||||||
| * | Remove NoopWaker; use futures::task::noop_waker_ref instead | Jim Newsome | 2024-08-27 | 4 | -21/+5 | |
| | | ||||||
| * | byte_qty: Make serde dependency optional in tor-basic-utils | Ian Jackson | 2024-08-27 | 1 | -1/+1 | |
| | | ||||||
| * | byte_qty: Move to tor-basic-utils | Ian Jackson | 2024-08-27 | 6 | -74/+6 | |
| | | | | | Code motion of byte_qty.rs, and minimal necessary supporting changes. | |||||
| * | byte_qty: Rename Qty to ByteQty and make it pub | Ian Jackson | 2024-08-27 | 2 | -8/+12 | |
| | | | | | | | | We're going to make this into a proper public type. It's going to move into a different crate, where there's no prelude, so give it a bespoke set of imports too. | |||||
| * | byte_qty: Move Qty into its own module, byte_qty. | Ian Jackson | 2024-08-27 | 4 | -57/+68 | |
| | | | | | | | | Code motion, part 1. Also explain in comments at the top of the new module why we are doing this at all rather than using an existing thing. | |||||
| * | tor-memquota: Move the macro-containing modules earlier in the lib.rs | Ian Jackson | 2024-08-27 | 1 | -2/+3 | |
| | | | | | | | This makes more sense than having them alphabetical. Noticed while I was working on moving other code. | |||||
| * | Merge branch 'peekable-poll-set' into 'main' | Jim Newsome | 2024-08-21 | 4 | -51/+38 | |
| |\ | | | | | | | | | Add and use `PeekableStream` and `UnobtrusivePeekableStream` See merge request tpo/core/arti!2345 | |||||
| | * | Expose stream_peek | Jim Newsome | 2024-08-21 | 2 | -6/+18 | |
| | | | ||||||
| | * | PeekFuture: implement for all PeekableStream | Jim Newsome | 2024-08-21 | 1 | -5/+6 | |
| | | | ||||||
| | * | StreamUnobtrusivePeeker: implement PeekableStream and UnobtrusivePeekableStream | Jim Newsome | 2024-08-21 | 3 | -41/+15 | |
| | | | ||||||
