diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-23 23:41:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 23:41:02 +0100 |
commit | bf237c6241f53122e37341a0dda65ef9e3b51a49 (patch) | |
tree | e352b4f60887e4d009cacdef250b7e8c294ff829 /Cargo.lock | |
parent | cd192313064bc2e9d65e3e734930cfaf15f4191b (diff) |
refactor: Move lockfile to a separate crate (#17503)
Moves the lockfile implementation to a separate crate so other projects
like Deploy can use it as well.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index b26cf7f52..7d2e2c01b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -775,6 +775,7 @@ dependencies = [ "deno_emit", "deno_graph", "deno_lint", + "deno_lockfile", "deno_runtime", "deno_task_shell", "dissimilar", @@ -1113,6 +1114,17 @@ dependencies = [ ] [[package]] +name = "deno_lockfile" +version = "0.1.0" +dependencies = [ + "anyhow", + "ring", + "serde", + "serde_json", + "test_util", +] + +[[package]] name = "deno_napi" version = "0.15.0" dependencies = [ |