1*d4726bddSHONG Yifan# Copyright 2015 The Bazel Authors. All rights reserved. 2*d4726bddSHONG Yifan# 3*d4726bddSHONG Yifan# Licensed under the Apache License, Version 2.0 (the "License"); 4*d4726bddSHONG Yifan# you may not use this file except in compliance with the License. 5*d4726bddSHONG Yifan# You may obtain a copy of the License at 6*d4726bddSHONG Yifan# 7*d4726bddSHONG Yifan# http://www.apache.org/licenses/LICENSE-2.0 8*d4726bddSHONG Yifan# 9*d4726bddSHONG Yifan# Unless required by applicable law or agreed to in writing, software 10*d4726bddSHONG Yifan# distributed under the License is distributed on an "AS IS" BASIS, 11*d4726bddSHONG Yifan# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*d4726bddSHONG Yifan# See the License for the specific language governing permissions and 13*d4726bddSHONG Yifan# limitations under the License. 14*d4726bddSHONG Yifan 15*d4726bddSHONG Yifan"""Module with Rust definitions required to write custom Rust rules.""" 16*d4726bddSHONG Yifan 17*d4726bddSHONG Yifanload( 18*d4726bddSHONG Yifan "//rust/private:common.bzl", 19*d4726bddSHONG Yifan _COMMON_PROVIDERS = "COMMON_PROVIDERS", 20*d4726bddSHONG Yifan) 21*d4726bddSHONG Yifanload( 22*d4726bddSHONG Yifan "//rust/private:providers.bzl", 23*d4726bddSHONG Yifan _BuildInfo = "BuildInfo", 24*d4726bddSHONG Yifan _ClippyInfo = "ClippyInfo", 25*d4726bddSHONG Yifan _CrateInfo = "CrateInfo", 26*d4726bddSHONG Yifan _DepInfo = "DepInfo", 27*d4726bddSHONG Yifan _DepVariantInfo = "DepVariantInfo", 28*d4726bddSHONG Yifan _TestCrateInfo = "TestCrateInfo", 29*d4726bddSHONG Yifan) 30*d4726bddSHONG Yifan 31*d4726bddSHONG YifanBuildInfo = _BuildInfo 32*d4726bddSHONG YifanClippyInfo = _ClippyInfo 33*d4726bddSHONG YifanCrateInfo = _CrateInfo 34*d4726bddSHONG YifanDepInfo = _DepInfo 35*d4726bddSHONG YifanDepVariantInfo = _DepVariantInfo 36*d4726bddSHONG YifanTestCrateInfo = _TestCrateInfo 37*d4726bddSHONG Yifan 38*d4726bddSHONG YifanCOMMON_PROVIDERS = _COMMON_PROVIDERS 39