diff --git a/Cargo.toml b/Cargo.toml index 5cb2a13..6939d77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastant" -version = "0.1.8" +version = "0.1.9" authors = ["FastLabs Developers"] edition = "2021" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index eb167da..92dd7be 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,6 +29,8 @@ //! //! **[See also the `Instant` type](Instant).** +#![cfg_attr(docsrs, feature(doc_cfg))] + mod instant; #[cfg(all(target_os = "linux", any(target_arch = "x86", target_arch = "x86_64")))] mod tsc_now;