aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-ureq
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'arti-ureq-remove-early-return' into 'main'Ian Jackson2025-05-192-5/+1
|\ | | | | | | | | | | | | arti-ureq: Remove obsolete early return in await_input Closes #1952 See merge request tpo/core/arti!2997
| * arti-ureq: Remove obsolete early return in await_inputNiel Duysters2025-05-192-5/+1
| |
* | *: use std::io::Error::other in many placesNick Mathewson2025-05-151-1/+1
|/ | | | | | | The `IoError::other` function is an easier way to say `IoError::new(IoErrorKind::Other, ...)`. It's been around since 1.74, but clippy started warning about the more verbose version in 1.87.
* arti-ureq: Specify versions for dependencies.Nick Mathewson2025-05-011-4/+4
|
* release: Bump all unstable tor/arti crates to 0.30.0Wesley Aptekar-Cassels2025-05-011-1/+1
| | | | | | | | ``` for crate in $(./maint/list_crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.30.0 done ```
* chore: Run fixup-features.Wesley Aptekar-Cassels2025-04-301-1/+8
| | | | | | | | | | | | cargo run -p fixup-features -- --exclude examples/ --exclude maint/ Cargo.toml The following features in arti-ureq were manually added to full or marked non-additive: * rustls * native-tls * tokio * async-std
* arti-ureq: Simplify use of map_or().Nick Mathewson2025-04-091-4/+4
| | | | | Clippy is complaining that these can be simplified, so I took its recommendations.
* arti-ureq: New library which integrates with ureqnield2025-04-093-0/+1093
Fixes #1519