diff options
author | Scott Olson <scott@solson.me> | 2020-09-15 03:33:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 22:33:18 -0400 |
commit | cf91550c65a0a1fb0cdd6bad714432ae8b786011 (patch) | |
tree | 197fdf3d2047b4329ee0eff06795e76f3b21e84f /core/lib.rs | |
parent | 7023263b304c7020f6d4413c0f48a5f7fb5675e2 (diff) |
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.
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
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; |