diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-05 11:56:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-05 11:56:18 -0500 |
commit | 76e44ddfd0d286335107de28bae06c6f962abf13 (patch) | |
tree | 8c78679dbc702333e0ef585d300e792a9d6b75dd /cli/startup_data.rs | |
parent | 5f1df038fb1462607af3555fa7431c05ca484dce (diff) |
Rename crates: 'deno' to 'deno_core' and 'deno_cli' to 'deno' (#3600)
Diffstat (limited to 'cli/startup_data.rs')
-rw-r--r-- | cli/startup_data.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/startup_data.rs b/cli/startup_data.rs index 8de8e0200..a90a2377d 100644 --- a/cli/startup_data.rs +++ b/cli/startup_data.rs @@ -1,10 +1,10 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. #[cfg(feature = "no-snapshot-init")] -use deno::Script; +use deno_core::Script; use crate::js::CLI_SNAPSHOT; use crate::js::COMPILER_SNAPSHOT; -use deno::StartupData; +use deno_core::StartupData; #[cfg(feature = "no-snapshot-init")] pub fn deno_isolate_init() -> StartupData<'static> { |