diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-06 11:38:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-06 11:38:56 -0500 |
commit | 29df272133425ed5d9c54a584c60193fb3ad6086 (patch) | |
tree | dd681fc76365fd177ea40a28daac88defa9d298f /core/lib.rs | |
parent | 870622d3ccb3589eeb72a439717edf7e40d9b093 (diff) |
error on warnings (#3612)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 20f3dba86..021ede9cc 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -1,4 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +#![deny(warnings)] + #[macro_use] extern crate log; extern crate futures; |