1*d4726bddSHONG Yifanload("//rust:defs.bzl", "rust_library", "rust_test") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"]) 4*d4726bddSHONG Yifan 5*d4726bddSHONG Yifanrust_library( 6*d4726bddSHONG Yifan name = "conflicting_deps", 7*d4726bddSHONG Yifan srcs = ["lib.rs"], 8*d4726bddSHONG Yifan edition = "2015", 9*d4726bddSHONG Yifan deps = [ 10*d4726bddSHONG Yifan "//test/conflicting_deps/first_crate:example_name_conflict", 11*d4726bddSHONG Yifan ], 12*d4726bddSHONG Yifan) 13*d4726bddSHONG Yifan 14*d4726bddSHONG Yifanrust_test( 15*d4726bddSHONG Yifan name = "conflicting_deps_test", 16*d4726bddSHONG Yifan crate = ":conflicting_deps", 17*d4726bddSHONG Yifan) 18