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 /test_plugin | |
parent | 5f1df038fb1462607af3555fa7431c05ca484dce (diff) |
Rename crates: 'deno' to 'deno_core' and 'deno_cli' to 'deno' (#3600)
Diffstat (limited to 'test_plugin')
-rw-r--r-- | test_plugin/Cargo.toml | 4 | ||||
-rw-r--r-- | test_plugin/src/lib.rs | 10 | ||||
-rw-r--r-- | test_plugin/tests/integration_tests.rs | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/test_plugin/Cargo.toml b/test_plugin/Cargo.toml index 94380643c..902a463cf 100644 --- a/test_plugin/Cargo.toml +++ b/test_plugin/Cargo.toml @@ -10,5 +10,5 @@ crate-type = ["cdylib"] [dependencies] futures = "0.3" -deno = { path = "../core" } -deno_cli = { path = "../cli" } +deno_core = { path = "../core" } +deno = { path = "../cli" } diff --git a/test_plugin/src/lib.rs b/test_plugin/src/lib.rs index 30df114b9..95cd6e9ca 100644 --- a/test_plugin/src/lib.rs +++ b/test_plugin/src/lib.rs @@ -1,11 +1,11 @@ #[macro_use] -extern crate deno; +extern crate deno_core; extern crate futures; -use deno::CoreOp; -use deno::Op; -use deno::PluginInitContext; -use deno::{Buf, PinnedBuf}; +use deno_core::CoreOp; +use deno_core::Op; +use deno_core::PluginInitContext; +use deno_core::{Buf, PinnedBuf}; use futures::future::FutureExt; fn init(context: &mut dyn PluginInitContext) { diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs index 9304560f7..cb76ef3ef 100644 --- a/test_plugin/tests/integration_tests.rs +++ b/test_plugin/tests/integration_tests.rs @@ -1,4 +1,4 @@ -use deno_cli::test_util::*; +use deno::test_util::*; use std::process::Command; fn deno_cmd() -> Command { |