Skip to content

Commit 2f96d31

Browse files
authored
Fixup arg_not_sync test output from 1.90.0 release (#46)
* Fixup arg_not_sync test output from 1.90.0 release
1 parent ecabb50 commit 2f96d31

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1598
-1598
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
version: 2
2-
updates:
3-
- package-ecosystem: cargo
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
time: "19:00"
8-
open-pull-requests-limit: 10
1+
version: 2
2+
updates:
3+
- package-ecosystem: cargo
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "19:00"
8+
open-pull-requests-limit: 10

.github/workflows/ci.yml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
1-
name: CI
2-
3-
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request:
8-
schedule: [cron: "0 0 * * *"]
9-
10-
permissions:
11-
contents: read
12-
13-
env:
14-
RUSTFLAGS: -Dwarnings
15-
16-
jobs:
17-
test:
18-
name: Test
19-
runs-on: ubuntu-latest
20-
steps:
21-
- uses: actions/checkout@v3
22-
- uses: dtolnay/rust-toolchain@stable
23-
with:
24-
components: rust-src # required for consistent error messages
25-
- run: cargo install cargo-expand
26-
- run: cargo test --verbose
27-
28-
fmt:
29-
name: Fmt
30-
runs-on: ubuntu-latest
31-
steps:
32-
- uses: actions/checkout@v3
33-
- uses: dtolnay/rust-toolchain@nightly
34-
with:
35-
components: rustfmt
36-
- run: cargo fmt -- --check
37-
38-
clippy:
39-
name: Clippy
40-
runs-on: ubuntu-latest
41-
steps:
42-
- uses: actions/checkout@v3
43-
- uses: dtolnay/rust-toolchain@nightly
44-
with:
45-
components: clippy
46-
- run: cargo clippy -- -Dwarnings
47-
48-
outdated:
49-
name: Outdated
50-
runs-on: ubuntu-latest
51-
steps:
52-
- uses: actions/checkout@v3
53-
- uses: dtolnay/install@cargo-outdated
54-
- run: cargo outdated --exit-code 1
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
schedule: [cron: "0 0 * * *"]
9+
10+
permissions:
11+
contents: read
12+
13+
env:
14+
RUSTFLAGS: -Dwarnings
15+
16+
jobs:
17+
test:
18+
name: Test
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: dtolnay/rust-toolchain@1.90.0
23+
with:
24+
components: rust-src # required for consistent error messages
25+
- run: cargo install cargo-expand
26+
- run: cargo test --verbose
27+
28+
fmt:
29+
name: Fmt
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v3
33+
- uses: dtolnay/rust-toolchain@nightly
34+
with:
35+
components: rustfmt
36+
- run: cargo fmt -- --check
37+
38+
clippy:
39+
name: Clippy
40+
runs-on: ubuntu-latest
41+
steps:
42+
- uses: actions/checkout@v3
43+
- uses: dtolnay/rust-toolchain@nightly
44+
with:
45+
components: clippy
46+
- run: cargo clippy -- -Dwarnings
47+
48+
outdated:
49+
name: Outdated
50+
runs-on: ubuntu-latest
51+
steps:
52+
- uses: actions/checkout@v3
53+
- uses: dtolnay/install@cargo-outdated
54+
- run: cargo outdated --exit-code 1

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/target
2-
**/*.rs.bk
3-
Cargo.lock
4-
.idea
1+
/target
2+
**/*.rs.bk
3+
Cargo.lock
4+
.idea
55
async-recursion.iml

Cargo.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
[package]
2-
name = "async-recursion"
3-
version = "1.1.1"
4-
authors = ["Robert Usher <266585+dcchut@users.noreply.github.com>"]
5-
edition = "2018"
6-
license = "MIT OR Apache-2.0"
7-
description = "Recursion for async functions"
8-
repository = "https://github.com/dcchut/async-recursion"
9-
documentation = "https://docs.rs/async-recursion"
10-
readme = "README.md"
11-
12-
[lib]
13-
proc-macro = true
14-
15-
[dependencies]
16-
proc-macro2 = { version = "1.0", default-features = false }
17-
quote = { version = "1.0", default-features = false }
18-
syn = { version = "2.0", features = ["full", "visit-mut", "parsing", "printing", "proc-macro", "clone-impls"], default-features = false }
19-
20-
[dev-dependencies]
21-
futures-executor = "0.3"
22-
trybuild = "1.0"
1+
[package]
2+
name = "async-recursion"
3+
version = "1.1.1"
4+
authors = ["Robert Usher <266585+dcchut@users.noreply.github.com>"]
5+
edition = "2018"
6+
license = "MIT OR Apache-2.0"
7+
description = "Recursion for async functions"
8+
repository = "https://github.com/dcchut/async-recursion"
9+
documentation = "https://docs.rs/async-recursion"
10+
readme = "README.md"
11+
12+
[lib]
13+
proc-macro = true
14+
15+
[dependencies]
16+
proc-macro2 = { version = "1.0", default-features = false }
17+
quote = { version = "1.0", default-features = false }
18+
syn = { version = "2.0", features = ["full", "visit-mut", "parsing", "printing", "proc-macro", "clone-impls"], default-features = false }
19+
20+
[dev-dependencies]
21+
futures-executor = "0.3"
22+
trybuild = "1.0"
2323
macrotest = "1.0"

0 commit comments

Comments
 (0)