Skip to content

Commit

Permalink
Fix bazel build.
Browse files Browse the repository at this point in the history
  • Loading branch information
golovasteek committed Nov 27, 2023
1 parent 413b60e commit ce632e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zvt/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ rust_library(

rust_binary(
name = "status",
srcs = glob(["examples/status.rs"]),
srcs = glob(["src/bin/status/main.rs"]),
edition = "2021",
deps = all_crate_deps() + [":zvt"],
)

rust_binary(
name = "feig_update",
srcs = glob(["examples/feig_update.rs"]),
srcs = glob(["src/bin/feig_update/main.rs"]),
edition = "2021",
deps = all_crate_deps() + [":zvt"],
)
Expand Down

0 comments on commit ce632e4

Please sign in to comment.