diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-06-24 10:04:45 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-24 15:04:45 +0200 |
| commit | fd5a12d7e25dc53238e2bbcffe970e646c1035f3 (patch) | |
| tree | 251c3ec1a46067b02ef30fb48349962973016bf3 /Cargo.lock | |
| parent | d39094913e91e5193f63459d9c5ca6ddc7779477 (diff) | |
refactor(snapshots): to their own crate (#14794)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock index 54ec13ac0..5165c654e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -738,23 +738,14 @@ dependencies = [ "data-url", "deno_ast", "deno_bench_util", - "deno_broadcast_channel", - "deno_console", "deno_core", - "deno_crypto", "deno_doc", "deno_emit", - "deno_fetch", "deno_graph", "deno_lint", - "deno_net", "deno_runtime", + "deno_snapshots", "deno_task_shell", - "deno_url", - "deno_web", - "deno_webgpu", - "deno_websocket", - "deno_webstorage", "dissimilar", "dprint-plugin-json", "dprint-plugin-markdown", @@ -1117,6 +1108,19 @@ dependencies = [ ] [[package]] +name = "deno_snapshots" +version = "0.0.0" +dependencies = [ + "deno_core", + "deno_runtime", + "lzzzz", + "once_cell", + "regex", + "serde", + "zstd", +] + +[[package]] name = "deno_task_shell" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
