1*d4726bddSHONG Yifanload("//rust:defs.bzl", "rust_binary") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"]) 4*d4726bddSHONG Yifan 5*d4726bddSHONG Yifanrust_binary( 6*d4726bddSHONG Yifan name = "rustdoc_test_writer", 7*d4726bddSHONG Yifan srcs = ["rustdoc_test_writer.rs"], 8*d4726bddSHONG Yifan edition = "2018", 9*d4726bddSHONG Yifan deps = [ 10*d4726bddSHONG Yifan "//tools/runfiles", 11*d4726bddSHONG Yifan ], 12*d4726bddSHONG Yifan) 13