1*d4726bddSHONG Yifanworkspace(name = "rules_rust_docs") 2*d4726bddSHONG Yifan 3*d4726bddSHONG Yifanlocal_repository( 4*d4726bddSHONG Yifan name = "rules_rust", 5*d4726bddSHONG Yifan path = "..", 6*d4726bddSHONG Yifan) 7*d4726bddSHONG Yifan 8*d4726bddSHONG Yifanload("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains") 9*d4726bddSHONG Yifan 10*d4726bddSHONG Yifanrules_rust_dependencies() 11*d4726bddSHONG Yifan 12*d4726bddSHONG Yifanrust_register_toolchains() 13*d4726bddSHONG Yifan 14*d4726bddSHONG Yifanload("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies") 15*d4726bddSHONG Yifan 16*d4726bddSHONG Yifancrate_universe_dependencies() 17*d4726bddSHONG Yifan 18*d4726bddSHONG Yifanload("@rules_rust//proto/prost:repositories.bzl", "rust_prost_dependencies") 19*d4726bddSHONG Yifan 20*d4726bddSHONG Yifanrust_prost_dependencies() 21*d4726bddSHONG Yifan 22*d4726bddSHONG Yifanload("@rules_rust//proto/prost:transitive_repositories.bzl", "rust_prost_transitive_repositories") 23*d4726bddSHONG Yifan 24*d4726bddSHONG Yifanrust_prost_transitive_repositories() 25*d4726bddSHONG Yifan 26*d4726bddSHONG Yifanload("@rules_rust//proto/protobuf:repositories.bzl", "rust_proto_protobuf_dependencies") 27*d4726bddSHONG Yifan 28*d4726bddSHONG Yifanrust_proto_protobuf_dependencies() 29*d4726bddSHONG Yifan 30*d4726bddSHONG Yifanload( 31*d4726bddSHONG Yifan "@rules_rust//wasm_bindgen:repositories.bzl", 32*d4726bddSHONG Yifan "rust_wasm_bindgen_dependencies", 33*d4726bddSHONG Yifan "rust_wasm_bindgen_register_toolchains", 34*d4726bddSHONG Yifan) 35*d4726bddSHONG Yifan 36*d4726bddSHONG Yifanrust_wasm_bindgen_dependencies() 37*d4726bddSHONG Yifan 38*d4726bddSHONG Yifanrust_wasm_bindgen_register_toolchains() 39