Skip to content

Commit

Permalink
Fix build error with -Z minimal-versions
Browse files Browse the repository at this point in the history
```
error[E0635]: unknown feature `proc_macro_span_shrink`
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.52/src/lib.rs:92:30
|
92 | feature(proc_macro_span, proc_macro_span_shrink)
| ^^^^^^^^^^^^^^^^^^^^^^
```
  • Loading branch information
taiki-e committed Aug 4, 2023
1 parent 3bad702 commit a93635e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async-stream-impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/tokio-rs/async-stream"
proc-macro = true

[dependencies]
proc-macro2 = "1"
proc-macro2 = "1.0.60"
syn = { version = "2.0.2", features = ["full", "visit-mut"] }
quote = "1"

Expand Down

0 comments on commit a93635e

Please sign in to comment.