-
Notifications
You must be signed in to change notification settings - Fork 721
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
Set minimal version of syn #1960
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hawkw
approved these changes
Feb 26, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, good catch!
the clippy failure on this PR is unrelated; it's probably a new lint that landed in Rust 1.59. I'll fix that separately.
hawkw
pushed a commit
that referenced
this pull request
Mar 8, 2022
This sets the minimal version of `syn` to `1.0.43` - the actual minimal version that is required to build `tracing-attributes`. See this build failure in Tokio: https://github.com/tokio-rs/tokio/runs/5344598894?check_suite_focus=true CC: tokio-rs/tokio#4513
hawkw
pushed a commit
that referenced
this pull request
Mar 8, 2022
This sets the minimal version of `syn` to `1.0.43` - the actual minimal version that is required to build `tracing-attributes`. See this build failure in Tokio: https://github.com/tokio-rs/tokio/runs/5344598894?check_suite_focus=true CC: tokio-rs/tokio#4513
hawkw
added a commit
that referenced
this pull request
Mar 8, 2022
# 0.1.20 (March 8, 2022) ### Fixed - Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([#1960]) ### Changed - Bumped minimum supported Rust version (MSRV) to 1.49.0 ([#1913]) Thanks to new contributor @udoprog for contributing to this release! [#1960]: #1960 [#1913]: #1913
hawkw
added a commit
that referenced
this pull request
Mar 8, 2022
# 0.1.20 (March 8, 2022) ### Fixed - Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([#1960]) ### Changed - Bumped minimum supported Rust version (MSRV) to 1.49.0 ([#1913]) Thanks to new contributor @udoprog for contributing to this release! [#1960]: #1960 [#1913]: #1913
hawkw
added a commit
that referenced
this pull request
Mar 9, 2022
# 0.1.32 (March 8th, 2022) This release reduces the overhead of creating and dropping disabled spans significantly, which should improve performance when no `tracing` subscriber is in use or when spans are disabled by a filter. ### Fixed - **attributes**: Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([#1960]) ### Changed - Reduced `Drop` overhead for disabled spans ([#1974]) - `tracing-attributes`: updated to [0.1.20][attributes-0.1.20] [#1974]: #1974 [#1960]: #1960 [attributes-0.1.20]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.20
hawkw
added a commit
that referenced
this pull request
Mar 9, 2022
# 0.1.32 (March 8th, 2022) This release reduces the overhead of creating and dropping disabled spans significantly, which should improve performance when no `tracing` subscriber is in use or when spans are disabled by a filter. ### Fixed - **attributes**: Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([#1960]) ### Changed - Reduced `Drop` overhead for disabled spans ([#1974]) - `tracing-attributes`: updated to [0.1.20][attributes-0.1.20] [#1974]: #1974 [#1960]: #1960 [attributes-0.1.20]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.20
hawkw
added a commit
that referenced
this pull request
Mar 9, 2022
# 0.1.32 (March 8th, 2022) This release reduces the overhead of creating and dropping disabled spans significantly, which should improve performance when no `tracing` subscriber is in use or when spans are disabled by a filter. ### Fixed - **attributes**: Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([#1960]) ### Changed - Reduced `Drop` overhead for disabled spans ([#1974]) - `tracing-attributes`: updated to [0.1.20][attributes-0.1.20] [#1974]: #1974 [#1960]: #1960 [attributes-0.1.20]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.20
kaffarell
pushed a commit
to kaffarell/tracing
that referenced
this pull request
May 22, 2024
# 0.1.20 (March 8, 2022) ### Fixed - Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([tokio-rs#1960]) ### Changed - Bumped minimum supported Rust version (MSRV) to 1.49.0 ([tokio-rs#1913]) Thanks to new contributor @udoprog for contributing to this release! [tokio-rs#1960]: tokio-rs#1960 [tokio-rs#1913]: tokio-rs#1913
kaffarell
pushed a commit
to kaffarell/tracing
that referenced
this pull request
May 22, 2024
# 0.1.32 (March 8th, 2022) This release reduces the overhead of creating and dropping disabled spans significantly, which should improve performance when no `tracing` subscriber is in use or when spans are disabled by a filter. ### Fixed - **attributes**: Compilation failure with `--minimal-versions` due to a too-permissive `syn` dependency ([tokio-rs#1960]) ### Changed - Reduced `Drop` overhead for disabled spans ([tokio-rs#1974]) - `tracing-attributes`: updated to [0.1.20][attributes-0.1.20] [tokio-rs#1974]: tokio-rs#1974 [tokio-rs#1960]: tokio-rs#1960 [attributes-0.1.20]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.20
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This sets the minimal version of
syn
to1.0.43
- the actual minimal version that is required to buildtracing-attributes
.See this build failure in Tokio: https://github.com/tokio-rs/tokio/runs/5344598894?check_suite_focus=true
CC: tokio-rs/tokio#4513