Skip to content

Commit

Permalink
Improve docsrs
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Sep 15, 2024
1 parent 8aab7e7 commit d635576
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

use core::{borrow::Borrow, cmp, marker::PhantomData, mem, slice};

#[doc(inline)]
pub use among;
use among::Among;
use crossbeam_skiplist::SkipSet;
Expand All @@ -26,9 +25,11 @@ extern crate std;
pub use dbutils::{Ascend, CheapClone, Checksumer, Comparator, Crc32, Descend};

#[cfg(feature = "xxhash3")]
#[cfg_attr(docsrs, doc(cfg(feature = "xxhash3")))]
pub use dbutils::XxHash3;

#[cfg(feature = "xxhash64")]
#[cfg_attr(docsrs, doc(cfg(feature = "xxhash64")))]
pub use dbutils::XxHash64;

const STATUS_SIZE: usize = mem::size_of::<u8>();
Expand Down

0 comments on commit d635576

Please sign in to comment.