From 7c3f4830d9f6f9fc923b65276f51309bcdbb85a1 Mon Sep 17 00:00:00 2001 From: Pavlos Rontidis Date: Wed, 5 Mar 2025 14:43:21 -0500 Subject: [PATCH] add required build dep back --- lib/vector-vrl/web-playground/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/vector-vrl/web-playground/Cargo.toml b/lib/vector-vrl/web-playground/Cargo.toml index 4e4e85e46a89e..8f2c875b6e718 100644 --- a/lib/vector-vrl/web-playground/Cargo.toml +++ b/lib/vector-vrl/web-playground/Cargo.toml @@ -12,9 +12,11 @@ crate-type = ["cdylib"] wasm-bindgen = "0.2" vrl.workspace = true serde.workspace = true -serde-wasm-bindgen = "0.6" gloo-utils = { version = "0.2", features = ["serde"] } vector-vrl-functions = { path = "../functions" } enrichment = { path = "../../enrichment" } # Required per https://docs.rs/getrandom/latest/getrandom/#webassembly-support getrandom = { version = "0.2.15", features = ["js"] } + +[build-dependencies] +cargo-lock = "10.1.0"