diff --git a/gday_encryption/src/lib.rs b/gday_encryption/src/lib.rs index a9104ce..afbd0fb 100644 --- a/gday_encryption/src/lib.rs +++ b/gday_encryption/src/lib.rs @@ -10,7 +10,7 @@ //! [gday_file_transfer](https://crates.io/crates/gday_file_transfer) chose this library //! because [rustls](https://docs.rs/rustls/latest/rustls) didn't support //! peer-to-peer connections with a shared key. -//! +//! #![forbid(unsafe_code)] #![warn(clippy::all)] diff --git a/gday_file_transfer/src/lib.rs b/gday_file_transfer/src/lib.rs index 14892b5..c0e15f2 100644 --- a/gday_file_transfer/src/lib.rs +++ b/gday_file_transfer/src/lib.rs @@ -10,7 +10,7 @@ //! //! 2. Peer A calls [`get_file_metas()`] to get a [`Vec`] of [`FileMetaLocal`] //! containing metadata about the files they'd like to send. -//! +//! //! 3. Peer A calls [`FileOfferMsg::from()`] on the `Vec`, to get //! a serializable [`FileOfferMsg`]. //!