Skip to content

Commit

Permalink
chore: simplify internal dependencies between crates (denoland#9600)
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy committed Feb 26, 2021
1 parent ebd2047 commit 67ca978
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ path = "./bench/main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.79.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.0" }
deno_web = { path = "../op_crates/web", version = "0.30.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.5.0" }
deno_runtime = { path = "../runtime", version = "0.9.0" }
regex = "1.4.3"
serde = { version = "1.0.123", features = ["derive"] }

Expand Down
3 changes: 3 additions & 0 deletions cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ use deno_core::serde_json::json;
use deno_core::serde_json::Value;
use deno_core::JsRuntime;
use deno_core::RuntimeOptions;
use deno_runtime::deno_fetch;
use deno_runtime::deno_web;
use deno_runtime::deno_websocket;
use regex::Regex;
use std::collections::HashMap;
use std::env;
Expand Down

0 comments on commit 67ca978

Please sign in to comment.