Skip to content

Commit

Permalink
chore: add arbitrary and lua features (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuchsnj committed May 5, 2023
1 parent 4b98f54 commit a0b9892
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ members = [
[features]
default = ["compiler", "value", "diagnostic", "path", "parser", "stdlib", "datadog", "core"]

# Main features (on by default)
compiler = ["dep:vrl-compiler"]
value = ["dep:value"]
diagnostic = ["dep:vrl-diagnostic"]
Expand All @@ -35,13 +36,17 @@ parser = ["dep:vrl-parser"]
stdlib = ["dep:vrl-stdlib"]
core = ["dep:vrl-core"]

# Datadog related features (on by default)
datadog = ["datadog_filter", "datadog_grok", "datadog_search"]
datadog_filter = ["dep:datadog-filter"]
datadog_grok = ["dep:datadog-grok"]
datadog_search = ["dep:datadog-search-syntax"]

# Features that aren't used as often (default off)
cli = ["dep:vrl-cli"]
test_framework = ["dep:vrl-tests"]
arbitrary = ["value/arbitrary"]
lua = ["value/lua"]

[dependencies]

Expand Down

0 comments on commit a0b9892

Please sign in to comment.