Ai
2 Star 0 Fork 0

mirrors_android_source/byteorder

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
BUILD 890 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yecheng Zhao 提交于 2023-10-09 09:36 +08:00 . Add BUILD file for kleaf bazel build
load("@rules_license//rules:license.bzl", "license")
load("@rules_license//rules:license_kind.bzl", "license_kind")
load("@rules_rust//rust:defs.bzl", "rust_library")
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
license_kinds = [
":SPDX-license-identifier-Apache-2.0",
":SPDX-license-identifier-MIT",
],
license_text = "LICENSE-APACHE",
visibility = [":__subpackages__"],
)
license_kind(
name = "SPDX-license-identifier-Apache-2.0",
conditions = ["notice"],
url = "https://spdx.org/licenses/Apache-2.0.html",
)
license_kind(
name = "SPDX-license-identifier-MIT",
conditions = ["notice"],
url = "",
)
rust_library(
name = "byteorder",
srcs = glob(["**/*.rs"]),
edition = "2021",
visibility = ["//visibility:public"],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_android_source/byteorder.git
git@gitee.com:mirrors_android_source/byteorder.git
mirrors_android_source
byteorder
byteorder
main

搜索帮助