summaryrefslogtreecommitdiff
path: root/test_util/Cargo.toml
diff options
context:
space:
mode:
authorHeyang Zhou <zhy20000919@hotmail.com>2023-08-22 13:56:00 +0800
committerGitHub <noreply@github.com>2023-08-22 13:56:00 +0800
commit6d4a005e4108a5dd762b339a02bc4d802755ba0d (patch)
tree69679038bfbd3127f6c1e1b85dbc347c8c52e36e /test_util/Cargo.toml
parent5834d282d4de5d0b5cacb9bf068f3896bef0a48a (diff)
feat(ext/kv): connect to remote database (#20178)
This patch adds a `remote` backend for `ext/kv`. This supports connection to Deno Deploy and potentially other services compatible with the KV Connect protocol.
Diffstat (limited to 'test_util/Cargo.toml')
-rw-r--r--test_util/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index 2f35473e8..6ea9d870d 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -31,6 +31,7 @@ once_cell.workspace = true
os_pipe.workspace = true
parking_lot.workspace = true
pretty_assertions.workspace = true
+prost.workspace = true
regex.workspace = true
reqwest.workspace = true
ring.workspace = true
@@ -46,3 +47,6 @@ url.workspace = true
[target.'cfg(windows)'.dependencies]
winapi = { workspace = true, features = ["consoleapi", "synchapi", "handleapi", "namedpipeapi", "winbase", "winerror"] }
+
+[build-dependencies]
+prost-build.workspace = true