1load("//crate_universe:defs.bzl", "crate", "crates_vendor") 2 3package(default_visibility = ["//visibility:public"]) 4 5crates_vendor( 6 name = "crates_vendor", 7 mode = "remote", 8 packages = { 9 "serde": crate.spec( 10 features = ["derive"], 11 version = "1", 12 ), 13 "serde_json": crate.spec( 14 version = "1", 15 ), 16 }, 17 # Short for 'test 3rdparty'. Keep this short to reduce the risk to 18 # bump into absolute path length issues on Windows. See: 19 # https://github.com/bazelbuild/rules_rust/issues/1120 20 repository_name = "t3p", 21 tags = ["manual"], 22 vendor_path = "crates", 23) 24