diff --git a/CHANGELOG.md b/CHANGELOG.md index 16757b1..488556a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Removed + +* `#![deny(rustdoc::missing_doc_code_examples)]` directive (see [issue #101730](https://github.com/rust-lang/rust/issues/101730) for details) + ## [0.3.1] - 2024-03-25 ### Changed diff --git a/src/lib.rs b/src/lib.rs index d33a605..43b7e5e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,5 @@ #![doc = include_str!("../README.md")] #![deny(missing_docs)] -#![deny(rustdoc::missing_doc_code_examples)] pub mod client; pub mod errors;