summaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
...
| * Version bumps to 0.27.0Ian Jackson2025-02-061-45/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See Release.md. maint/list_crates | grep -P '^tor-|^arti-' | xargs -n1 nailing-cargo -Eu set-version --bump minor -p This completes the version bumps. The report of changed crates, before I started the release work, is: $ maint/changed_crates -v "arti-v$LAST_VERSION" oneshot-fused-workaround: No change. slotmap-careful: No change. test-temp-dir: No change. fslock-guard: No change. hashx: No change. equix: No change. tor-basic-utils: No change. caret: No change. fs-mistrust safelog: No change. retry-error: No change. tor-error tor-general-addr: No change. tor-geoip: No change. tor-rtcompat tor-rtmock tor-async-utils tor-config tor-config-path tor-rpc-connect tor-log-ratelim: No change. tor-rpcbase tor-memquota: No change. tor-units tor-llcrypto: No change. tor-protover: No change. tor-bytes tor-checkable: No change. tor-cert tor-key-forge tor-hscrypto: No change. tor-socksproto: No change. tor-linkspec: No change. tor-cell: No change. tor-proto tor-netdoc: No change. tor-consdiff: No change. tor-netdir tor-relay-selection: No change. tor-persist tor-chanmgr tor-ptmgr: No change. tor-guardmgr: No change. tor-circmgr tor-dirclient: No change. tor-dirmgr: No change. tor-keymgr tor-hsclient tor-hsservice tor-hsrproxy: No change. tor-relay-crypto arti-client arti-relay arti-rpcserver arti arti-rpc-client-core $
| * Bump arti crate version to 1.4.0Ian Jackson2025-02-061-1/+1
| | | | | | | | | | | | And the in-tree dependencies. cargo set-version --offline --bump minor -p fs-mistrust
| * fs-mistrust: bump minor version, and in-tree depsIan Jackson2025-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | There are new features. cargo set-version --offline --bump minor -p fs-mistrust Actually, I have discovered by diffing that some methods now take `&self` where previously they took `self`. This will need a further bump to the fs-mistrust version and a fix to the changelog. I will do that. Filed blocker ticket #1841 for it.
* | tor-keymgr: Define the test key constants using a macro.Gabriela Moldovan2025-02-061-0/+1
|/ | | | Closes #1396
* Upgrade to dirs 6Ian Jackson2025-02-051-12/+44
| | | | No code changes needed.
* Upgrade to axum 8Ian Jackson2025-02-051-8/+7
| | | | We use this in an example only.
* Upgrade to downcast-rs 2Ian Jackson2025-02-051-2/+2
| | | | No code changes needed.
* Routine cargo updateIan Jackson2025-02-051-267/+302
|
* Rewrite download manager exampletidely2025-02-041-12/+32
|
* fix RUSTSEC-2025-0004Dimitris Apostolou2025-02-031-4/+4
|
* rpc: Strengthen guarantees from Cancel.Nick Mathewson2025-01-161-0/+1
| | | | | | | | | | | Cancellation is now fallable, which allows us to detect attempts to cancel which cannot work. We now guarantee that when you try to cancel a `Cancel<F>` future, either the cancel operation will succeed, or the future will return (or will have already returned) Ok(), but not both, and not neither. Closes #818.
* Bring back tor-congestion empty with a tombstoneDavid Goulet2025-01-161-0/+4
| | | | Signed-off-by: David Goulet <[email protected]>
* congestion: Make the cc_alg values a caret_int for better code semanticDavid Goulet2025-01-161-0/+1
| | | | Signed-off-by: David Goulet <[email protected]>
* circmgr: Modify CircParameters for congestion controlDavid Goulet2025-01-161-0/+1
| | | | | | | | | | | | | | The congestion control parameters are created from the consensus parameters (netparams) and then put into the CircParameters object that is then passed down the tor-proto crate. Because different parameters are selected depending on the circuit type (onion vs exit vs sbws), a CircuitType enum is introduced for the sole purpose of being used to select the right parameters. Related #534 Signed-off-by: David Goulet <[email protected]>
* crates: Remove tor-congestionDavid Goulet2025-01-161-10/+0
| | | | | | | | | Crate is unused and most of its code will be reworked and folded into tor-proto in the future commit with the Congestion Control work. Related #534 Signed-off-by: David Goulet <[email protected]>
* Merge branch 'rpc-cookie' into 'main'Nick Mathewson2025-01-151-0/+5
|\ | | | | | | | | | | | | RPC: Implement cookie authentication Closes #1529 See merge request tpo/core/arti!2702
| * arti-rpcserver: Tell connections what kind of auth to expect.Nick Mathewson2025-01-151-0/+1
| |
| * tor-rpc-connect: Cryptographic support for cookie auth.Nick Mathewson2025-01-151-0/+4
| | | | | | | | Conforms to rpc-cookie-sketch.md.
* | tor-proto: Remove dependency on tor-netdir.Gabriela Moldovan2025-01-151-2/+1
| | | | | | | | | | | | | | | | This moves the `NetParameters -> KistParams` conversion to `tor-chanmgr`. Prompted by https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2706#note_3147557
* | tor-proto: Replace constants with caret_int.Gabriela Moldovan2025-01-151-0/+1
| |
* | tor-rtcompat: Implement StreamOps for Framed.Gabriela Moldovan2025-01-151-0/+1
| |
* | tor-proto: Add KistParams type built from NetParameters.Gabriela Moldovan2025-01-151-0/+2
|/ | | | | | | | Note: this commit makes `tor-proto` depend on `tor-netdir` (because it adds a `KistParams` type that is buildable from `NetParameters`, which is defined in `tor-netdir`). Closes #1729
* tor-proto: Add traced_test to test casesIan Jackson2025-01-151-0/+1
| | | | (We don't add it to the handful of unit tests that don't use an executor.)
* tor-relay-crypto: Implement ToEncodableCert for the relay cert types.Gabriela Moldovan2025-01-131-0/+2
| | | | Closes #1777
* tor-key-forge: Fill out the InvalidCertError type.Gabriela Moldovan2025-01-131-0/+1
| | | | We'll soon use this.
* tor-keymgr: Fix cert handling tests.Gabriela Moldovan2025-01-131-0/+2
| | | | | | This updates and reenables the cert management tests. Part of #1768
* tor-keymgr: Add cert parse error variant.Gabriela Moldovan2025-01-131-0/+2
| | | | | | | This will soon be used, when we modify the `ArtiNativeKeystore` cert lookup code to actually parse certificates before returning them. Part of #1768
* arti-relay: make `main` a wrapper around a `main_main`Steven Engler2025-01-131-0/+1
| | | | This makes it more similar to arti.
* arti-relay: add `LoggingConfig`Steven Engler2025-01-131-0/+1
|
* arti-relay: added a base `CfgPathResolver`Steven Engler2025-01-131-0/+2
|
* Bump arti crate to 1.3.2Nick Mathewson2025-01-071-1/+1
| | | | | | | Done with ``` cargo set-version --bump patch -p arti ```
* Bump versions of internal arti crates for Arti 1.3.2Nick Mathewson2025-01-071-55/+55
| | | | | | | | | | | | | The affected crates follow our regular versioning. They all get bumped to 0.26.0. Done with ``` for crate in $(./maint/list_crates |grep '^arti-\|tor-' ); do cargo set-version --bump minor -p $crate; done ```
* Run "cargo update" in preparation for release.Nick Mathewson2025-01-071-330/+303
|
* Bump to dynasmrt 3.0.1Nick Mathewson2025-01-061-28/+17
|
* Upgrade to fast-socks5 0.10.0Nick Mathewson2025-01-061-2/+2
|
* Upgrade to statrs 0.18.0Nick Mathewson2025-01-061-18/+7
|
* Upgrade to itertools 0.14.0Nick Mathewson2025-01-061-21/+30
|
* arti: Use connect points to listen for RPC connections.Nick Mathewson2024-12-191-0/+1
|
* rpc: Configuration options for artiNick Mathewson2024-12-191-0/+1
| | | | | | This adds the options currently specified in rpc-connect-point.rs, though they don't do anything yet. We still have to implement the correct defaulting behavior.
* connpt: Make unix socket handling more robust.Nick Mathewson2024-12-191-0/+1
| | | | | | | | | | Grab an associated lock file... - ... then delete the socket file (if it's present) ... - ... then bind to it. On exit: - remove the socket - then drop the lock.
* rpc-connect: Make LoadOptions buildable.Nick Mathewson2024-12-191-0/+1
|
* tor-hscrypto: Move encodable key trait impls from tor-key-forge.Gabriela Moldovan2024-12-111-1/+1
| | | | | | | | | This enables us to get rid of the tor-key-forge -> tor-hscrypto dependency, partially addressing the TODO from `tor_key_forge::traits`. This commit is mostly code motion. Best reviewed with `--color-moved`. See also #1778
* tor-proto: switched from `Slab` to `DenseSlotMap` for waker mapSteven Engler2024-12-101-1/+1
|
* tor-proto: replace oneshot broadcast channelSteven Engler2024-12-101-0/+1
| | | | | The old version had some issues, so this is a rewrite which uses slightly lower level synchronization types (`Mutex` and `OnceLock`).
* tor-rtcompat: Implement StreamOps for all the stream types.Gabriela Moldovan2024-12-101-0/+1
| | | | Part of #1769
* connpt: use cfg-if to declare connect point defaults.Nick Mathewson2024-12-091-0/+1
|
* rpc-client: Initial implementation for RPC connect points.Nick Mathewson2024-12-091-0/+3
| | | | | | | | | This commit covers the major points of the design: Parsing the environment, parsing and resolving connect points, connecting to Arti, and handling errors. There are a few areas that need to be fixed, all marked with XXXXs.
* rpc-client: move Builder to its own module.Nick Mathewson2024-12-091-0/+1
|
* Move base CfgPathResolver for arti-client back to tor-config-path.Nick Mathewson2024-12-091-1/+0
| | | | | This time, we make explicit that it is a _base_ resolver, and that it is client-only.
* tor-key-forge: Add an encodable cert type.Gabriela Moldovan2024-12-041-0/+1
|