summaryrefslogtreecommitdiff
path: root/runtime/Cargo.toml
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-03-12 21:23:59 +0100
committerGitHub <noreply@github.com>2021-03-12 21:23:59 +0100
commit0770449c938cdd0edbadaf1e87e460b21fc1b4ef (patch)
tree649807f55ed9e03f1d1cd5291295e8d4ff5345da /runtime/Cargo.toml
parente83ff62ccbe33ad9c19cb9cab9154b6767d6d74b (diff)
refactor: move Console to op_crates/console (#9770)
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r--runtime/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index f654e015c..db42f9326 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -19,6 +19,7 @@ path = "examples/hello_runtime.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.80.2" }
+deno_console = { path = "../op_crates/console", version = "0.1.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.14.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.3" }
deno_web = { path = "../op_crates/web", version = "0.30.3" }
@@ -33,6 +34,7 @@ winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.80.2" }
+deno_console = { path = "../op_crates/console", version = "0.1.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.14.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.3" }
deno_web = { path = "../op_crates/web", version = "0.30.3" }