From a72e66ff67ad9e6bec155bec834839bb92621c27 Mon Sep 17 00:00:00 2001 From: Alexey Kozhevnikov Date: Tue, 30 Jul 2024 09:38:13 -0700 Subject: [PATCH] nop validation during build Summary: X-link: https://github.com/pytorch/executorch/pull/4449 Adding validation logic to "build targets" implementation. Actual validation is nop in this diff, implementaion is in next diffs in stack. I need to use late bindings in order to keep validation logic in separate crate because `buck2_build_api` depends on validation, while validation depends on materialization from `buck2_build_api`. Reviewed By: stepancheg Differential Revision: D60238806 fbshipit-source-id: e1484731ce099189555bd306c1f93bab91da7de8 --- shim/third-party/rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shim/third-party/rust/Cargo.toml b/shim/third-party/rust/Cargo.toml index 0b8fa9f0..718d9ea5 100644 --- a/shim/third-party/rust/Cargo.toml +++ b/shim/third-party/rust/Cargo.toml @@ -169,7 +169,7 @@ rustyline = "11.0" scopeguard = "1.0.0" sequence_trie = "0.3.6" serde = { version = "1.0.173", features = ["derive", "rc"] } -serde_json = "1.0.48" +serde_json = { version = "1.0.48", features = ["raw_value"] } sha1 = "0.10" sha2 = "0.10" shlex = "1.3"