summaryrefslogtreecommitdiff
path: root/examples/hyper-examples/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump all the unstable tor- and arti- crates to 0.37.0.Gabriela Moldovan2025-12-021-4/+4
| | | | | | | | | Done using: ``` for crate in $(./maint/list_crates | rg '^(tor|arti-)'); do cargo set-version -p $crate 0.37.0 done
* maint: bump minor versions of all published cratesSteven Engler2025-10-291-5/+5
| | | | | | | ```bash readarray -t publish < <(cargo metadata --format-version 1 | jq -r '.packages[] | select((.id | startswith("path+file:///")) and (.rust_version != null) and (.publish == null or .publish == true or .publish != [])) | .name') for package in "${publish[@]}"; do echo "$package:"; cargo set-version --bump minor -p "$package"; done ```
* release: Bump versions in examples/ and maint/Wesley Aptekar-Cassels2025-10-021-5/+5
|
* release: Run fixup-features.Wesley Aptekar-Cassels2025-10-011-5/+5
|
* Require tracing-subscriber 0.3.20Nick Mathewson2025-09-021-1/+1
| | | | Fixes RUSTSEC-2025-0055.
* Fix complaints from "cargo sort"Nick Mathewson2025-08-271-3/+9
|
* Run "fixup-features"Nick Mathewson2025-08-271-0/+3
|
* Update webpki-roots dependency to 1.0.2Nick Mathewson2025-08-261-1/+1
|
* Merge branch 'main' into !2941Ian Jackson2025-08-111-1/+1
| | | | | | | | | | Conflicts: examples/hyper/hyper-http-client-example/Cargo.toml examples/hyper/hyper-http-hs-example/Cargo.toml In both cases, just the change of edition, which I have applied to examples/hyper-examples/Cargo.toml instead.
* hyper-examples: Use native-tls instead of rustlsnield2025-07-211-1/+1
|
* hyper-examples: Remove hyper-custom-connector-examplenield2025-07-201-6/+2
| | | | We will make a separate library for this.
* hyper-examples: Rename example directorynield2025-07-201-0/+30
This directory had to be renamed because otherwise it would cause conflicts with the actual hyper crate in the CI pipeline.