Compilation fails on macOS with 57e8f5c in jupyter-websocket-client #34491
Unanswered
mocenigo
asked this question in
Help and General Q&A
Replies: 1 comment
-
Ok, this error is back as of today. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Compilation currently fails as follows
error[E0432]: unresolved import
async_tungstenite::tokio
--> /Users/mocenigo/.cargo/git/checkouts/runtimed-da41b1ee8fc7914c/7130c80/crates/jupyter-websocket-client/src/client.rs:3:5
|
3 | tokio::connect_async,
| ^^^^^ could not find
tokio
inasync_tungstenite
|
note: found an item that was configured out
--> /Users/mocenigo/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-tungstenite-0.30.0/src/lib.rs:94:9
|
94 | pub mod tokio;
| ^^^^^
note: the item is gated behind the
tokio-runtime
feature--> /Users/mocenigo/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-tungstenite-0.30.0/src/lib.rs:93:7
|
93 | #[cfg(feature = "tokio-runtime")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0432]: unresolved import
async_tungstenite::tokio
--> /Users/mocenigo/.cargo/git/checkouts/runtimed-da41b1ee8fc7914c/7130c80/crates/jupyter-websocket-client/src/websocket.rs:2:25
|
2 | use async_tungstenite::{tokio::ConnectStream, tungstenite::Message, WebSocketStream};
| ^^^^^ could not find
tokio
inasync_tungstenite
|
note: found an item that was configured out
--> /Users/mocenigo/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-tungstenite-0.30.0/src/lib.rs:94:9
|
94 | pub mod tokio;
| ^^^^^
note: the item is gated behind the
tokio-runtime
feature--> /Users/mocenigo/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-tungstenite-0.30.0/src/lib.rs:93:7
|
93 | #[cfg(feature = "tokio-runtime")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
For more information about this error, try
rustc --explain E0432
.error: could not compile
jupyter-websocket-client
(lib) due to 2 previous errorswarning: build failed, waiting for other jobs to finish...
Beta Was this translation helpful? Give feedback.
All reactions