Skip to content

Commit

Permalink
Fixed warning that was causing compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Koenders committed Mar 17, 2024
1 parent baf9677 commit 79fc427
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ pub(crate) mod varint;

use de::{read::Reader, Decoder};
use enc::write::Writer;

#[cfg(any(
feature = "alloc",
feature = "std",
feature = "derive",
feature = "serde"
))]
pub use features::*;

pub mod config;
Expand All @@ -95,7 +102,6 @@ pub mod de;
pub mod enc;
pub mod error;

pub use atomic::*;
pub use de::{BorrowDecode, Decode};
pub use enc::Encode;

Expand Down

0 comments on commit 79fc427

Please sign in to comment.