Don't error on unused imports.

This commit is contained in:
Josh Matthews 2021-05-27 21:48:31 -04:00 committed by GitHub
parent 46de44340f
commit 8583e505c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#![allow(unused_imports)]
use crate::fetch_with_context; use crate::fetch_with_context;
use crate::fetch_with_cors_cache; use crate::fetch_with_cors_cache;
#[cfg(not(target_os = "windows"))] #[cfg(not(target_os = "windows"))]