-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
See example failure here: https://docs.rs/crate/ibc-types/0.6.1/builds/915166
[INFO] [stderr] warning: Target filter specified, but no targets matched. This is a no-op
[INFO] [stderr] Checking bytes v1.5.0
[INFO] [stderr] Checking serde_bytes v0.11.12
[INFO] [stderr] Checking serde_json v1.0.107
[INFO] [stderr] Checking ed25519-consensus v2.1.0
[INFO] [stderr] Compiling safe-proc-macro2 v1.0.36
[INFO] [stderr] Compiling crunchy v0.2.2
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `LineColumn` in crate `proc_macro`
[INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-6f17d22bba15001f/safe-proc-macro2-1.0.36/src/wrapper.rs:485:33
[INFO] [stderr] |
[INFO] [stderr] 485 | let proc_macro::LineColumn { line, column } = s.start();
[INFO] [stderr] | ^^^^^^^^^^ not found in `proc_macro`
[INFO] [stderr] |
[INFO] [stderr] help: consider importing one of these items
[INFO] [stderr] |
[INFO] [stderr] 1 + use crate::LineColumn;
[INFO] [stderr] |
[INFO] [stderr] 1 + use crate::fallback::LineColumn;
[INFO] [stderr] |
[INFO] [stderr] help: if you import `LineColumn`, refer to it directly
[INFO] [stderr] |
[INFO] [stderr] 485 - let proc_macro::LineColumn { line, column } = s.start();
[INFO] [stderr] 485 + let LineColumn { line, column } = s.start();
[INFO] [stderr] |
[INFO] [stderr]
Looks like we should bump proc-macro2 within the deps.
Metadata
Metadata
Assignees
Labels
No labels