Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Generate Docs (reference docs.rs)
run: |
cargo rustdoc -- --cfg docsrs -Z unstable-options $(cargo metadata --format-version 1 | jq --raw-output '.packages | map("--extern-html-root-url=\(.name)=https://docs.rs/\(.name)/\(.version)") | join(" ")')
- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v4
with:
path: 'target/doc'
- id: deployment
Expand Down
2 changes: 1 addition & 1 deletion examples/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ quote = "1"
syn = { version = "2", features = ["full"] }

[dev-dependencies]
trybuild = "1.0.80"
trybuild = "1.0.111"

[package.metadata.release]
release = false
4 changes: 2 additions & 2 deletions examples/macro/tests/ui/emit.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ error: example error
error: example error
--> tests/ui/emit.rs:8:5
|
8 | / emit!(
9 | | struct Struct;
8 | / emit!(
9 | | struct Struct;
10 | | );
| |_____^
|
Expand Down
2 changes: 1 addition & 1 deletion examples/no_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ quote = "1"
syn = { version = "2", features = ["full"] }

[dev-dependencies]
trybuild = "1.0.80"
trybuild = "1.0.111"

[package.metadata.release]
release = false
4 changes: 2 additions & 2 deletions examples/no_macro/tests/ui/emit.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ error: example error
error: example error
--> tests/ui/emit.rs:8:5
|
8 | / emit!(
9 | | struct Struct;
8 | / emit!(
9 | | struct Struct;
10 | | );
| |_____^
|
Expand Down
Loading