| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
```bash
readarray -t bump < <(maint/list-crates | grep -P '^tor-|^arti-')
for crate in "${bump[@]}"; do cargo set-version --bump minor -p "${crate}"; done
```
|
| | |
|
| |\
| |
| |
| |
| |
| |
| | |
Removed unnecessary lint
Closes #2556
See merge request tpo/core/arti!4210
|
| | | |
|
| | |
| |
| |
| | |
Removed unnecessary lint
|
| | | |
|
| |/ |
|
| |
|
|
|
|
| |
Additionally, fix itertools usage in maybenot_padding.rs
The definition of `Position` changed in 0.15.0.
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Closes #2617.
We've lucked out this time, and it turns out that every one of our
published crates gets a minor bump. So this was generated with:
```
for cr in $(./maint/list-crates); do
cargo set-version -p $cr --bump minor
done
```
|
| |/ |
|
| |\
| |
| |
| |
| | |
Add Windows compatibility for maint/add_warning
See merge request tpo/core/arti!4084
|
| | | |
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit bumps the MSRV to 1.91 which was released on 2025-10-30.
The Cargo.toml files were updated as follows:
```sh
git ls-files | \
grep ".*Cargo\.toml$" | \
xargs sed -i '' 's/^rust-version = "1\.89"$/rust-version = "1\.91"/g'
```
The following files were updated manually:
```
modified: .gitlab-ci.yml
modified: README.md
modified: flake.nix
modified: maint/docker-android/Dockerfile
```
|
| |\
| |
| |
| |
| | |
CI: Bump docker images
See merge request tpo/core/arti!4078
|
| | |
| |
| |
| | |
Part of #2559
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This commit executes maint/add_warning with the just added change to
deny string slices except in tests.
I recommend auditing this by checking out the previous commit followed
by running the script yourself and then verifying that the diff is
identical to this commit.
This commit makes cargo clippy fail. We will add exceptions in the next
commit.
|
| |/
|
|
|
|
|
| |
This commit denies clippy::string_slice but allows it for tests in
maint/add_warning.
The script will be executed in the next commit.
|
| |
|
|
|
| |
`proc-macro-error2` is unmaintained. We depend on it via `getset` and
`dynasm`, so we'll this exception until they're updated.
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
Done using:
```
for crate in $(./maint/list-crates | rg '^(tor|arti-)'); do
cargo set-version -p $crate 0.43.0
done
```
|
| |
|
|
|
|
|
|
|
|
|
| |
When the circ-padding feature is enabled, we use maybenot, which does
not yet support rand 0.10. In the meantime, enabling this feature pulls
in rand 0.9. This is not ideal, but should be okay as a temporary
situation.
This also replaces the use of ReseedingRng (which was removed in 0.10)
with the reseeding_rng crate. This is somewhat less performant, but it
should be okay.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
cargo set-version -p arti-client 0.42.0
cargo set-version -p arti-config 0.42.0
cargo set-version -p arti-relay 0.42.0
cargo set-version -p arti-rpc-client-core 0.42.0
cargo set-version -p arti-rpcserver 0.42.0
cargo set-version -p arti-testing 0.42.0
cargo set-version -p arti-ureq 0.42.0
cargo set-version -p tor-async-utils 0.42.0
cargo set-version -p tor-basic-utils 0.42.0
cargo set-version -p tor-bytes 0.42.0
cargo set-version -p tor-cell 0.42.0
cargo set-version -p tor-cert 0.42.0
cargo set-version -p tor-cert-x509 0.42.0
cargo set-version -p tor-chanmgr 0.42.0
cargo set-version -p tor-checkable 0.42.0
cargo set-version -p tor-circmgr 0.42.0
cargo set-version -p tor-config 0.42.0
cargo set-version -p tor-config-path 0.42.0
cargo set-version -p tor-consdiff 0.42.0
cargo set-version -p tor-dirclient 0.42.0
cargo set-version -p tor-dircommon 0.42.0
cargo set-version -p tor-dirmgr 0.42.0
cargo set-version -p tor-dirserver 0.42.0
cargo set-version -p tor-error 0.42.0
cargo set-version -p tor-events 0.42.0
cargo set-version -p tor-general-addr 0.42.0
cargo set-version -p tor-geoip 0.42.0
cargo set-version -p tor-guardmgr 0.42.0
cargo set-version -p tor-hsclient 0.42.0
cargo set-version -p tor-hscrypto 0.42.0
cargo set-version -p tor-hsrproxy 0.42.0
cargo set-version -p tor-hsservice 0.42.0
cargo set-version -p tor-key-forge 0.42.0
cargo set-version -p tor-keymgr 0.42.0
cargo set-version -p tor-linkspec 0.42.0
cargo set-version -p tor-llcrypto 0.42.0
cargo set-version -p tor-log-ratelim 0.42.0
cargo set-version -p tor-memquota 0.42.0
cargo set-version -p tor-memquota-cost 0.42.0
cargo set-version -p tor-netdir 0.42.0
cargo set-version -p tor-netdoc 0.42.0
cargo set-version -p tor-persist 0.42.0
cargo set-version -p tor-proto 0.42.0
cargo set-version -p tor-protover 0.42.0
cargo set-version -p tor-ptmgr 0.42.0
cargo set-version -p tor-relay-crypto 0.42.0
cargo set-version -p tor-relay-selection 0.42.0
cargo set-version -p tor-rpcbase 0.42.0
cargo set-version -p tor-rpc-connect 0.42.0
cargo set-version -p tor-rtcompat 0.42.0
cargo set-version -p tor-rtmock 0.42.0
cargo set-version -p tor-socksproto 0.42.0
cargo set-version -p tor-units 0.42.0
|
| |\
| |
| |
| |
| |
| |
| | |
reproducible-build: Document how to upgrade the OSX SDK version
Closes #2444
See merge request tpo/core/arti!3921
|
| | |
| |
| |
| | |
Closes #2444.
|
| |/
|
|
|
|
|
| |
Now that we've updated to MACOS_DEPLOYMENT_TARGET 10.15 (see !3920)
we can use more recent versions of the security-framework crate.
Closes #2387.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
This gives our reproducible-build tools permission to use APIs
introduced in versions up to 10.14. Previously, we had this set to
10.12, which is the oldest version supported by Rust.
Upgrading to 10.14 will allow us to merge !3817, and to upgrade
security-framework to the latest version (#2387).
OSX 10.14 ("Mojave") was released in September 2018, and hasn't
been officially supported since October 2021. IMO it's a fine "very
old version" for now.
|
| |
|
|
|
|
| |
This patch puts the osx tools build (which gets cached) into a
directory that includes the SDK version, so that we don't get
confused with older or newer SDK builds.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
- Update the build target to 10.12, and define it in a single place.
(We had 10.7 before, but Rust only supports 10.12 and higher.
We will probably want to update this to something even more recent
soon.
- Use the default clang c++ library, rather than trying to force
libstdc++, which OSX dropped after the 10.13 SDK.
- Use the same clang++ for compilation and linking.
- Use the 15.5 SDK.
- Use a copy of the SDK with a known source.
Specifically we start with the the pkg file from Apple, as cached
by the TBB team on `build-sources.tbb.tpo`. Using a pkg file means
that we have to run a script from them the tor-browser-build
repository to extract the SDK files, and then run the osxcross
script that repackages that SDK as a tar.xz file.
I believe our script will make sure this gets cached.
- Stop trying to use define an `ar`; nothing needs it.
|
| | |
|
| | |
|
| |\
| |
| |
| |
| |
| |
| | |
Allow compile-time selection of rustls CryptoProvider; use aws-lc-rs by default.
Closes #2448
See merge request tpo/core/arti!3857
|
| | |
| |
| |
| |
| | |
They have finally updated their license to remove the old OpenSSL/4-clause
BSD text. (See https://github.com/aws/aws-lc/pull/3091 .)
|
| |\ \
| | |
| | |
| | |
| | | |
Update CI images for Rust and Alpine
See merge request tpo/core/arti!3839
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |/
|/|
| |
| |
| |
| | |
This commit replaces our own calls of echo by simply adding
`set -o xtrace` to the top of the shell scripts, which achieves exactly
the same but in a native way.
|
| | | |
|
| | |
| |
| |
| |
| | |
Works around #2387. Empirically, with this, cargo update no longer
wants to update this crate to the broken version.
|
| | | |
|
| |\ \
| | |
| | |
| | |
| | | |
cargo audit exception list review
See merge request tpo/core/arti!3841
|
| | | | |
|
| | |/ |
|
| | | |
|
| | | |
|
| |/ |
|