From cf91550c65a0a1fb0cdd6bad714432ae8b786011 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Tue, 15 Sep 2020 03:33:18 +0100 Subject: refactor: Remove dependency on downcast_rs. (#7475) We don't seem to use downcast_rs in any essential way. We can just use the standard library `Any` directly. --- core/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/lib.rs') diff --git a/core/lib.rs b/core/lib.rs index ba7fdcd21..73d0da071 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -1,7 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -#[macro_use] -extern crate downcast_rs; extern crate futures; #[macro_use] extern crate lazy_static; -- cgit v1.2.3