Skip to content

Commit b0d5f59

Browse files
committed
Fix imports
1 parent cc4fa63 commit b0d5f59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/net_protocol.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
// TODO: reduce API surface and add documentation
44
#![allow(missing_docs)]
55

6-
use std::{collections::BTreeMap, sync::Arc};
6+
use std::{
7+
collections::BTreeMap,
8+
sync::{Arc, OnceLock},
9+
};
710

811
use anyhow::{anyhow, Result};
912
use futures_lite::future::Boxed as BoxedFuture;

0 commit comments

Comments
 (0)