We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This guide describes the steps needed to compile VRL locally and use that in the compilation of Vector.
Clone the VRL repo to your workspace directory, alongside your copy of the Vector repo.
Checkout the branch/commit you want or you can just make changes to origin/main directly.
origin/main
In Vector, edit the Cargo.toml line that sets the vrl crate. For example:
Cargo.toml
vrl
-vrl = { git = "https://github.com/vectordotdev/vrl.git", branch = "main", features = ["arbitrary", "cli", "test", "test_framework"] } +vrl = { path = "../vrl", features = ["cli", "test", "test_framework", "arbitrary"] }