Skip to content

Commit

Permalink
Revert "refactor(snapshots): to their own crate (denoland#14794)" (de…
Browse files Browse the repository at this point in the history
…noland#15076)

This reverts commit fd5a12d.
  • Loading branch information
bartlomieju authored Jul 4, 2022
1 parent 06934db commit a919a5d
Show file tree
Hide file tree
Showing 19 changed files with 675 additions and 741 deletions.
24 changes: 10 additions & 14 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ members = [
"ops",
"runtime",
"serde_v8",
"snapshots",
"test_ffi",
"test_util",
"ext/broadcast_channel",
Expand Down
13 changes: 11 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,17 @@ harness = false
path = "./bench/lsp_bench_standalone.rs"

[build-dependencies]
deno_runtime = { version = "0.67.0", path = "../runtime" }
deno_broadcast_channel = { version = "0.53.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.59.0", path = "../ext/console" }
deno_core = { version = "0.141.0", path = "../core" }
deno_crypto = { version = "0.73.0", path = "../ext/crypto" }
deno_fetch = { version = "0.82.0", path = "../ext/fetch" }
deno_net = { version = "0.51.0", path = "../ext/net" }
deno_url = { version = "0.59.0", path = "../ext/url" }
deno_web = { version = "0.90.0", path = "../ext/web" }
deno_webgpu = { version = "0.60.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.64.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.54.0", path = "../ext/webstorage" }
regex = "=1.5.6"
serde = { version = "=1.0.136", features = ["derive"] }
zstd = '=0.11.1'
Expand All @@ -42,7 +52,6 @@ deno_emit = "0.3.0"
deno_graph = "0.28.0"
deno_lint = { version = "0.31.0", features = ["docs"] }
deno_runtime = { version = "0.67.0", path = "../runtime" }
deno_snapshots = { version = "0.1.0", path = "../snapshots" }
deno_task_shell = "0.4.0"

atty = "=0.2.14"
Expand Down
Loading

0 comments on commit a919a5d

Please sign in to comment.