Skip to content

Release 0.3.31 #2889

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Oct 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
99e1ceb
tests: Fix dead_code warning for tuple struct
taiki-e Jan 6, 2024
a2a53cd
Fix typos (#2821)
vuittont60 Jan 8, 2024
67660ae
Use [lints] in Cargo.toml
taiki-e Oct 5, 2024
dac5078
Use Self keyword instead of concrete type name
taiki-e Dec 24, 2023
657a010
Apply unsafe_op_in_unsafe_fn lint if available on MSRV
taiki-e Dec 24, 2023
c252b73
Always set #![no_std] and remove redundant imports
taiki-e Feb 25, 2024
696afc6
Ignore dead_code lint on Assert* traits
taiki-e Feb 25, 2024
a6f1c4e
Fix rustdoc::redundant_explicit_links warning
taiki-e Feb 25, 2024
070731d
Add 'static bound to waker_ref
taiki-e Feb 26, 2024
fc90d8e
Add test of select's grammar
dtolnay Feb 28, 2024
e594d2c
Parse rhs of `select!` arms using match-arm rules
dtolnay Feb 28, 2024
98e9091
Use *::MAX associated constants
taiki-e Mar 8, 2024
32bc43b
ci: Use taiki-e/checkout-action action
taiki-e Mar 8, 2024
0d65330
Add a helper for always ready futures (#2825)
GnomedDev Mar 9, 2024
17ecb89
Make non constructor methods of futures::io::{BufReader,BufWriter} no…
ethe Mar 31, 2024
a6e98bb
Remove unused direct dependency on pin-utils
taiki-e Apr 5, 2024
a080556
ci: Set timeout-minutes in all jobs
taiki-e May 2, 2024
a0fd391
Remove no longer needed `extern crate proc_macro`
taiki-e May 2, 2024
4ae1158
Tweak imports in tests
taiki-e May 2, 2024
343f2b3
Various fixes too make the CI green (#2885)
hkratz Sep 14, 2024
57fac08
Add missing symbols (#2883)
cuishuang Sep 14, 2024
721d7e6
Add accessors for the inner of stream::Iter (#2875)
wfraser Sep 14, 2024
0c0b39f
Use `#[inline(always)]` on `clone_arc_raw` (#2865)
afeistel Sep 14, 2024
10f9fb9
Fix issues with `AsyncBufRead::read_line` and `AsyncBufReadExt::lines…
hkratz Sep 18, 2024
536fb22
ci: Work around sanitizer issue on latest Linux kernel
taiki-e Mar 17, 2024
a60174b
Fix use after free of task in FuturesUnordered when dropped future pa…
Imberflur Oct 3, 2024
9ffc284
Document how `BoxFuture`s / `BoxStream`s are often made (#2887)
alamb Oct 4, 2024
1112a45
Fix clippy::uninit_vec warning
taiki-e Oct 26, 2021
16c6b93
Release 0.3.31
taiki-e Oct 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: Set timeout-minutes in all jobs
  • Loading branch information
taiki-e committed Oct 5, 2024
commit a0805569fe7b54e4cdabf89e17e66f0cfc3f9ce9
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- os: ubuntu-latest
target: i686-unknown-linux-gnu
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -70,6 +71,7 @@ jobs:
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
- '1.36'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand Down Expand Up @@ -104,6 +106,7 @@ jobs:
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
- '1.56'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand Down Expand Up @@ -136,6 +139,7 @@ jobs:
- beta
- nightly
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -148,6 +152,7 @@ jobs:
minimal-versions:
name: cargo minimal-versions build
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -169,6 +174,7 @@ jobs:
- thumbv7m-none-eabi
- thumbv6m-none-eabi
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand Down Expand Up @@ -201,6 +207,7 @@ jobs:
bench:
name: cargo bench
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -211,6 +218,7 @@ jobs:
features:
name: cargo hack check --feature-powerset
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -233,6 +241,7 @@ jobs:
miri:
name: cargo miri test
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -252,6 +261,7 @@ jobs:
- memory
- thread
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -268,6 +278,7 @@ jobs:
# clippy:
# name: cargo clippy
# runs-on: ubuntu-latest
# timeout-minutes: 60
# steps:
# - uses: taiki-e/checkout-action@v1
# - name: Install Rust
Expand All @@ -277,6 +288,7 @@ jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand All @@ -286,6 +298,7 @@ jobs:
docs:
name: cargo doc
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
- name: Install Rust
Expand Down