From bf237c6241f53122e37341a0dda65ef9e3b51a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 23 Jan 2023 23:41:02 +0100 Subject: 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. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') 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" } -- cgit v1.2.3