diff options
author | 2021-09-13 11:22:53 +0700 | |
---|---|---|
committer | 2021-09-13 11:24:28 +0700 | |
commit | 01b945b9814b9dc546e783a6dab66e4f7fe49786 (patch) | |
tree | dbc5db40ac2ed11770994e6d65666d81caab7f2e /web/src/lib.rs | |
parent | 2c630809d403f7fa87c3230be031299e5fb3af17 (diff) | |
download | iced-01b945b9814b9dc546e783a6dab66e4f7fe49786.tar.gz iced-01b945b9814b9dc546e783a6dab66e4f7fe49786.tar.bz2 iced-01b945b9814b9dc546e783a6dab66e4f7fe49786.zip |
Write missing docs and `Debug` implementations for `web`
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r-- | web/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs index ec2bd178..5bbd2ee6 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -50,8 +50,8 @@ //! [`wasm-pack`]: https://github.com/rustwasm/wasm-pack //! [`wasm-bindgen`]: https://github.com/rustwasm/wasm-bindgen //! [`tour` example]: https://github.com/hecrj/iced/tree/0.3/examples/tour -//#![deny(missing_docs)] -//#![deny(missing_debug_implementations)] +#![deny(missing_docs)] +#![deny(missing_debug_implementations)] #![deny(unused_results)] #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] |