tangled
alpha
login
or
join now
nonbinary.computer
/
jacquard
80
fork
atom
A better Rust ATProto crate
80
fork
atom
overview
issues
9
pulls
pipelines
bit of cleanup
Orual
5 months ago
77cfa03e
3fc5713e
+2
-3
1 changed file
expand all
collapse all
unified
split
crates
jacquard-common
src
websocket.rs
+2
-3
crates/jacquard-common/src/websocket.rs
···
1
1
//! WebSocket client abstraction
2
2
3
3
+
use crate::CowStr;
4
4
+
use crate::stream::StreamError;
3
5
use bytes::Bytes;
4
6
use n0_future::Stream;
5
7
use n0_future::stream::Boxed;
···
8
10
use std::future::Future;
9
11
use std::ops::Deref;
10
12
use url::Url;
11
11
-
12
12
-
use crate::stream::StreamError;
13
13
-
use crate::{CowStr, IntoStatic};
14
13
15
14
/// UTF-8 validated bytes for WebSocket text messages
16
15
#[repr(transparent)]