Skip to content

Commit

Permalink
chore(build): Use open source vrl fork
Browse files Browse the repository at this point in the history
Update the cargo build dependencies for the vrl package to point to the Mezmo
open source fork instead of a private repo.

Ref: LOG-19155
  • Loading branch information
dhable committed Jan 29, 2024
1 parent be71036 commit 347e20f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ members = [
]

[workspace.dependencies]
vrl = { version = "0.8.1", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }
vrl = { version = "0.8.1", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }
pin-project = { version = "1.1.3", default-features = false }

[dependencies]
Expand Down Expand Up @@ -228,8 +228,8 @@ number_prefix = { version = "0.4.0", default-features = false, features = ["std"
ratatui = { version = "0.24.0", optional = true, default-features = false, features = ["crossterm"] }

# Datadog Pipelines
# datadog-filter = { package = "datadog-filter", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0" }
# datadog-search-syntax = { package = "datadog-search-syntax", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0" }
# datadog-filter = { package = "datadog-filter", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0" }
# datadog-search-syntax = { package = "datadog-search-syntax", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0" }

hex = { version = "0.4.3", default-features = false } # Do not do `optional`
sha2 = { version = "0.10.8", default-features = false } # Do not do `optional`
Expand Down Expand Up @@ -380,7 +380,7 @@ tokio-test = "0.4.3"
tower-test = "0.4.0"
vector-lib = { path = "lib/vector-lib", default-features = false, features = ["vrl", "test"] }
snap = "1"
vrl = { version = "0.8.1", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0",features = ["cli", "test", "test_framework", "arbitrary"] }
vrl = { version = "0.8.1", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0",features = ["cli", "test", "test_framework", "arbitrary"] }

wiremock = "0.5.21"
zstd = { version = "0.13.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ indoc = { version = "2", default-features = false }
tokio = { version = "1", features = ["test-util"] }
quick-protobuf = "0.8"
similar-asserts = "1.5.0"
vrl = { version = "0.8.1", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }
vrl = { version = "0.8.1", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }
vector-core = { path = "../vector-core", default-features = false, features = ["test"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,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 = { version = "0.8.1", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }
vrl = { version = "0.8.1", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0", features = ["cli", "test", "test_framework", "arbitrary"] }

[features]
api = ["dep:async-graphql"]
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-vrl/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
enrichment = { path = "../../enrichment" }
vrl = { version = "0.8.1", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.11.0", features = ["test", "test_framework"] }
vrl = { version = "0.8.1", git = "ssh://git@github.com/mezmo/vrl.git", rev = "v0.11.0", features = ["test", "test_framework"] }
vector-vrl-functions = { path = "../../vector-vrl/functions" }

ansi_term = "0.12"
Expand Down

0 comments on commit 347e20f

Please sign in to comment.