diff --git a/Cargo.lock b/Cargo.lock index 07e970e29..255aaba7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3607,7 +3607,7 @@ dependencies = [ "rustyline", "serde", "serde_json", - "starlark_derive", + "starlark_derive 0.13.0", "starlark_map", "starlark_syntax", "static_assertions", @@ -3628,6 +3628,18 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "starlark_derive" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90121b6c93025704cf056fc88025b0b668bd2c6023403857f027059bd4362ca1" +dependencies = [ + "dupe", + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "starlark_map" version = "0.13.0" @@ -5003,7 +5015,7 @@ dependencies = [ "serde", "serde_json", "starlark", - "starlark_derive", + "starlark_derive 0.14.0", "tempfile", "thiserror 2.0.18", "tokio", diff --git a/crates/vx-starlark/Cargo.toml b/crates/vx-starlark/Cargo.toml index d7d2c7b7c..122a69a96 100644 --- a/crates/vx-starlark/Cargo.toml +++ b/crates/vx-starlark/Cargo.toml @@ -19,7 +19,7 @@ tracing = { workspace = true } # Starlark runtime (Facebook's Rust implementation) starlark = { version = "0.13" } -starlark_derive = { version = "0.13" } +starlark_derive = { version = "0.14" } # Serialization serde = { workspace = true }