From 8086e19dcce467d29c07ef3e56ebe79bca75c57a Mon Sep 17 00:00:00 2001 From: Pavlos Rontidis Date: Wed, 23 Aug 2023 15:14:48 -0400 Subject: [PATCH] fix(deps): fix [dev-dependencies] for some libs (#18328) * fix(deps): fix [dev-dependencies] for some libs * remove extra newline * fix bad rebase --- Cargo.lock | 1 + lib/codecs/Cargo.toml | 2 ++ lib/vector-config/Cargo.toml | 1 + lib/vector-core/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 03db7994b05c6..73bf7f34d2659 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9730,6 +9730,7 @@ dependencies = [ "url", "vector-config-common", "vector-config-macros", + "vector-core", "vrl", ] diff --git a/lib/codecs/Cargo.toml b/lib/codecs/Cargo.toml index 8dafc5c95e531..c2ce406a130c8 100644 --- a/lib/codecs/Cargo.toml +++ b/lib/codecs/Cargo.toml @@ -38,6 +38,8 @@ futures = { version = "0.3", default-features = false } indoc = { version = "2", default-features = false } tokio = { version = "1", features = ["test-util"] } similar-asserts = "1.5.0" +vrl = { version = "0.6.0", features = ["cli", "test", "test_framework", "arbitrary"] } +vector-core = { path = "../vector-core", default-features = false, features = ["test"] } [features] syslog = ["dep:syslog_loose"] diff --git a/lib/vector-config/Cargo.toml b/lib/vector-config/Cargo.toml index 71f86425f7df6..147e2be98ea90 100644 --- a/lib/vector-config/Cargo.toml +++ b/lib/vector-config/Cargo.toml @@ -34,3 +34,4 @@ vector-config-macros = { path = "../vector-config-macros" } [dev-dependencies] assert-json-diff = { version = "2", default-features = false } serde_with = { version = "3.3.0", default-features = false, features = ["std", "macros"] } +vector-core = { path = "../vector-core", default-features = false, features = ["test"] } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 938fbff767a4f..1abd475c0b85b 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -95,7 +95,7 @@ rand = "0.8.5" rand_distr = "0.4.3" tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt", "ansi", "registry"] } vector-common = { path = "../vector-common", default-features = false, features = ["test"] } -vrl.workspace = true +vrl = { version = "0.6.0", features = ["cli", "test", "test_framework", "arbitrary"] } [features] api = ["dep:async-graphql"]