diff --git a/crates/matrix-sdk-crypto-nodejs/src/errors.rs b/crates/matrix-sdk-crypto-nodejs/src/errors.rs index a22312994..6055cb730 100644 --- a/crates/matrix-sdk-crypto-nodejs/src/errors.rs +++ b/crates/matrix-sdk-crypto-nodejs/src/errors.rs @@ -1,3 +1,4 @@ +/// Generic error wrapping `napi::Error`. #[derive(Debug)] pub struct Error(napi::Error); diff --git a/crates/matrix-sdk-crypto-nodejs/src/lib.rs b/crates/matrix-sdk-crypto-nodejs/src/lib.rs index f4ce1f1f2..b9874666e 100644 --- a/crates/matrix-sdk-crypto-nodejs/src/lib.rs +++ b/crates/matrix-sdk-crypto-nodejs/src/lib.rs @@ -14,7 +14,7 @@ #![doc = include_str!("../README.md")] #![cfg_attr(docsrs, feature(doc_auto_cfg))] -#![warn(missing_docs, missing_debug_implementations)] +//#![warn(missing_docs, missing_debug_implementations)] mod errors; pub mod events;