diff options
author | Luca Casonato <hello@lcas.dev> | 2023-10-31 12:13:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 11:13:57 +0000 |
commit | 2d9298f5f5550c21ba218ff7095aa9afe80c7e02 (patch) | |
tree | 6daee1cc6007745097e176c7367b697e58632baf /test_util/build.rs | |
parent | 092555c611ebab87ad570b4dcb73d54288dccdd9 (diff) |
chore: update ext/kv to use denokv_* crates (#20986)
This commit updates the ext/kv module to use the denokv_* crates for
the protocol and the sqlite backend. This also fixes a couple of bugs in
the sqlite backend, and updates versionstamps to be updated less
linearly.
Diffstat (limited to 'test_util/build.rs')
-rw-r--r-- | test_util/build.rs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test_util/build.rs b/test_util/build.rs deleted file mode 100644 index 420abd0a1..000000000 --- a/test_util/build.rs +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. - -use std::env; -use std::io; -use std::path::PathBuf; - -fn main() -> io::Result<()> { - println!("cargo:rerun-if-changed=../ext/kv/proto"); - - let descriptor_path = - PathBuf::from(env::var("OUT_DIR").unwrap()).join("proto_descriptor.bin"); - - prost_build::Config::new() - .file_descriptor_set_path(&descriptor_path) - .compile_well_known_types() - .compile_protos( - &["../ext/kv/proto/datapath.proto"], - &["../ext/kv/proto/"], - )?; - - Ok(()) -} |