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 /lockfile/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 'lockfile/Cargo.toml')
-rw-r--r-- | lockfile/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lockfile/Cargo.toml b/lockfile/Cargo.toml new file mode 100644 index 000000000..8e6843285 --- /dev/null +++ b/lockfile/Cargo.toml @@ -0,0 +1,20 @@ +# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_lockfile" +version = "0.1.0" +edition = "2021" +license = "MIT" +description = "An implementation of a lockfile used in Deno" + +[lib] +path = "lib.rs" + +[dependencies] +anyhow.workspace = true +ring.workspace = true +serde.workspace = true +serde_json.workspace = true + +[dev-dependencies] +test_util.workspace = true |