blob: 8fe2b57b96094926bf773be99df1cedc0db08896 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_binary")
package(default_visibility = ["//visibility:public"])
rust_binary(
name = "e2e_bootstrap_entry",
srcs = [
"src/main.rs",
],
deps = [
"//sw/host/opentitanlib",
"@crate_index//:anyhow",
"@crate_index//:humantime",
"@crate_index//:log",
"@crate_index//:regex",
"@crate_index//:structopt",
],
)