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.toml | |
| 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.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 00ecf554c..94f084a5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,7 @@ members = [ "ext/websocket", "ext/webstorage", "ext/napi", + "lockfile", ] exclude = ["test_util/std/hash/_wasm"] @@ -50,6 +51,7 @@ deno_runtime = { version = "0.93.0", path = "./runtime" } napi_sym = { version = "0.15.0", path = "./cli/napi/sym" } deno_bench_util = { version = "0.79.0", path = "./bench_util" } test_util = { path = "./test_util" } +deno_lockfile = { version = "0.1.0", path = "./lockfile" } # exts deno_broadcast_channel = { version = "0.79.0", path = "./ext/broadcast_channel" } |
