summaryrefslogtreecommitdiff
path: root/lockfile/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'lockfile/Cargo.toml')
-rw-r--r--lockfile/Cargo.toml20
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