Skip to content

Commit

Permalink
fix: compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
liuq19 committed Dec 12, 2024
1 parent 960d8e7 commit 193f9af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lazyvalue/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub(crate) mod value;
#[doc(inline)]
pub use self::{
get::{
advance, get, get_from_bytes, get_from_bytes_unchecked, get_from_faststr,
get, get_from_bytes, get_from_bytes_unchecked, get_from_faststr,
get_from_faststr_unchecked, get_from_slice, get_from_slice_unchecked, get_from_str,
get_from_str_unchecked, get_many, get_many_unchecked, get_unchecked,
},
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ pub mod value;
pub mod writer;

// re-export FastStr
pub use ::faststr::FastStr;
// re-export the serde trait
pub use faststr::FastStr;
pub use ::serde::{Deserialize, Serialize};
#[doc(inline)]
pub use reader::Read;
pub use serde::{Deserialize, Serialize};

#[doc(inline)]
pub use crate::error::{Error, Result};
Expand Down

0 comments on commit 193f9af

Please sign in to comment.