Skip to content

Commit

Permalink
Remove initial implementation of VRL cache
Browse files Browse the repository at this point in the history
  • Loading branch information
esensar committed Oct 24, 2024
1 parent 65a05f3 commit f217abf
Show file tree
Hide file tree
Showing 48 changed files with 52 additions and 1,122 deletions.
12 changes: 0 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ members = [
"lib/vector-vrl/functions",
"lib/vector-vrl/tests",
"lib/vector-vrl/web-playground",
"lib/vrl-cache",
"vdev",
]

Expand Down
1 change: 0 additions & 1 deletion lib/vector-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ publish = false
[dependencies]
codecs = { path = "../codecs", default-features = false }
enrichment = { path = "../enrichment" }
vrl-cache = { path = "../vrl-cache" }
file-source = { path = "../file-source", optional = true }
opentelemetry-proto = { path = "../opentelemetry-proto", optional = true }
prometheus-parser = { path = "../prometheus-parser", optional = true }
Expand Down
1 change: 0 additions & 1 deletion lib/vector-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ pub use vector_core::{
pub use vector_lookup as lookup;
pub use vector_stream as stream;
pub use vector_tap as tap;
pub use vrl_cache;
#[cfg(feature = "vrl")]
pub use vrl;

Expand Down
1 change: 0 additions & 1 deletion lib/vector-vrl/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ publish = false
[dependencies]
chrono-tz.workspace = true
enrichment = { path = "../../enrichment" }
vrl-cache = { path = "../../vrl-cache" }
vrl.workspace = true
vector-vrl-functions = { path = "../../vector-vrl/functions" }

Expand Down
2 changes: 0 additions & 2 deletions lib/vector-vrl/tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ fn main() {
let mut functions = vrl::stdlib::all();
functions.extend(vector_vrl_functions::all());
functions.extend(enrichment::vrl_functions());
functions.extend(vrl_cache::vrl_functions());

run_tests(
tests,
Expand Down Expand Up @@ -133,7 +132,6 @@ fn get_tests(cmd: &Cmd) -> Vec<Test> {
vector_vrl_functions::all()
.into_iter()
.chain(enrichment::vrl_functions())
.chain(vrl_cache::vrl_functions())
.collect(),
))
.filter(|test| {
Expand Down
1 change: 0 additions & 1 deletion lib/vector-vrl/web-playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ gloo-utils = { version = "0.2", features = ["serde"] }
getrandom = { version = "0.2", features = ["js"] }
vector-vrl-functions = { path = "../functions" }
enrichment = { path = "../../enrichment" }
vrl-cache = { path = "../../vrl-cache" }

[build-dependencies]
cargo-lock = "10.0.0"
1 change: 0 additions & 1 deletion lib/vector-vrl/web-playground/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ fn compile(mut input: Input) -> Result<VrlCompileResult, VrlDiagnosticResult> {
let mut functions = vrl::stdlib::all();
functions.extend(vector_vrl_functions::all());
functions.extend(enrichment::vrl_functions());
functions.extend(vrl_cache::vrl_functions());

let event = &mut input.event;
let state = TypeState::default();
Expand Down
11 changes: 0 additions & 11 deletions lib/vrl-cache/Cargo.toml

This file was deleted.

167 changes: 0 additions & 167 deletions lib/vrl-cache/src/cache_delete.rs

This file was deleted.

Loading

0 comments on commit f217abf

Please sign in to comment.