Skip to content

Commit

Permalink
chore(deps): Bump uuid from 1.12.0 to 1.15.1 (#22561)
Browse files Browse the repository at this point in the history
* chore(deps): Bump uuid from 1.12.0 to 1.15.1

Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.12.0 to 1.15.1.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.0...v1.15.1)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix cargo.lock rebase

* fix wasm support for playground

* add required build dep back

* install target manually because rustup 1.8.0+ changed this behavior

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pavlos Rontidis <pavlos.rontidis@gmail.com>
  • Loading branch information
dependabot[bot] and pront authored Mar 6, 2025
1 parent 207e5d4 commit 3f26a97
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 21 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ jobs:
${{ runner.os }}-cargo-
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: 'cargo install cross --version 0.2.4 --force --locked'
- run: |
rustup target add x86_64-unknown-linux-gnu
cargo install cross --version 0.2.4 --force --locked
# Why is this build, not check? Because we need to make sure the linking phase works.
# aarch64 and musl in particular are notoriously hard to link.
# While it may be tempting to slot a `check` in here for quickness, please don't.
Expand Down
26 changes: 8 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ tokio = { version = "1.43.0", default-features = false, features = ["full"] }
toml = { version = "0.8.20", default-features = false, features = ["display", "parse"] }
tonic = { version = "0.11", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] }
tonic-build = { version = "0.11", default-features = false, features = ["transport", "prost"] }
uuid = { version = "1.12.0", features = ["v4", "v7", "serde"] }
uuid = { version = "1.15.1", features = ["v4", "v7", "serde"] }
vector-lib = { path = "lib/vector-lib", default-features = false, features = ["vrl"] }
vector-config = { path = "lib/vector-config" }
vector-config-common = { path = "lib/vector-config-common" }
Expand Down
3 changes: 2 additions & 1 deletion lib/vector-vrl/web-playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ crate-type = ["cdylib"]
wasm-bindgen = "0.2"
vrl.workspace = true
serde.workspace = true
serde-wasm-bindgen = "0.6"
gloo-utils = { version = "0.2", features = ["serde"] }
vector-vrl-functions = { path = "../functions" }
enrichment = { path = "../../enrichment" }
# Required per https://docs.rs/getrandom/latest/getrandom/#webassembly-support
getrandom = { version = "0.2.15", features = ["js"] }

[build-dependencies]
cargo-lock = "10.1.0"

0 comments on commit 3f26a97

Please sign in to comment.