blob: 4fabefd4587794fd9af39d06b34f9a2ec2cf1e08 [file] [log] [blame]
# Copyright 2025 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load("@platforms//host:constraints.bzl", "HOST_CONSTRAINTS")
load("//build/tools/bazel2gn/bazel_rules:defs.bzl", "rustc_binary")
rustc_binary(
name = "json_validator_valico",
srcs = ["src/main.rs"],
edition = "2021",
rustc_flags = [
"-Cpanic=abort",
],
target_compatible_with = HOST_CONSTRAINTS,
visibility = ["//visibility:public"],
deps = [
"//third_party/rust_crates/vendor:argh",
"//third_party/rust_crates/vendor:serde_json",
"//third_party/rust_crates/vendor:serde_json5",
"//third_party/rust_crates/vendor:valico",
],
)