Skip to content

Commit

Permalink
fix ambiguous name error
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Jan 28, 2024
1 parent 08a2806 commit e272d93
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/asynch/clients/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ pub struct WebsocketClosed;
#[cfg(all(feature = "embedded-ws", not(feature = "tungstenite")))]
mod embedded_websocket;

Check failure on line 7 in src/asynch/clients/mod.rs

View workflow job for this annotation

GitHub Actions / xrpl-rust

file not found for module `embedded_websocket`
#[cfg(all(feature = "tungstenite", not(feature = "embedded-ws")))]
mod tokio_tungstenite;
mod tungstenite;

#[cfg(all(feature = "embedded-ws", not(feature = "tungstenite")))]
pub use embedded_websocket::*;

Check warning on line 12 in src/asynch/clients/mod.rs

View workflow job for this annotation

GitHub Actions / xrpl-rust

unused import: `embedded_websocket::*`
#[cfg(all(feature = "tungstenite", not(feature = "embedded-ws")))]
pub use tokio_tungstenite::*;
pub use tungstenite::*;
File renamed without changes.

0 comments on commit e272d93

Please sign in to comment.