summaryrefslogtreecommitdiff
path: root/runtime/Cargo.toml
diff options
context:
space:
mode:
authorTilman Roeder <dyed.green.info@gmail.com>2021-08-24 14:21:31 +0100
committerGitHub <noreply@github.com>2021-08-24 15:21:31 +0200
commit93d83a84dbe1f6ecf93b596f88bc85ba378fa986 (patch)
tree8f9165f29064b0eb6d34661577877ebc2a3e37b3 /runtime/Cargo.toml
parent46e4ba38b2b1ccee8d3b4f04be1a2cc0b42cd52a (diff)
feat(unstable): Add file locking APIs (#11746)
This commit adds following unstable APIs: - Deno.flock() - Deno.flockSync() - Deno.funlock() - Deno.funlockSync()
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r--runtime/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 491516dbb..520509450 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -65,6 +65,7 @@ atty = "0.2.14"
dlopen = "0.1.8"
encoding_rs = "0.8.28"
filetime = "0.2.14"
+fs3 = "0.5.0"
http = "0.2.4"
hyper = { version = "0.14.10", features = ["server", "stream", "http1", "http2", "runtime"] }
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved