blob: 07c00d01e73c7d506eb2193c4ae92a82df8e6b32 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
package(default_visibility = ["//visibility:public"])
load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
rust_library(
name = "cryptotest_parser",
srcs = ["cryptotest_parser.rs"],
deps = [
"@crate_index//:lazy_static",
"@crate_index//:regex",
"@crate_index//:thiserror",
],
)
rust_test(
name = "cryptotest_parser_test",
crate = ":cryptotest_parser",
)