blob: 4331be2fb07bc9c21d02985e65da8f9c66a54c81 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001###############################################################################
2# @generated
3# This file is auto-generated by the cargo-bazel tool.
4#
5# DO NOT MODIFY: Local changes may be replaced in future executions.
6###############################################################################
7
8load(
9 "@bazel_skylib//lib:selects.bzl",
10 "selects",
11)
12
13# buildifier: disable=bzl-visibility
14load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
15load(
16 "@rules_rust//rust:defs.bzl",
17 "rust_library",
18)
19
20package(default_visibility = ["//visibility:public"])
21
22# licenses([
23# "TODO", # MPL-2.0+
24# ])
25
26rust_library(
27 name = "smartstring",
28 srcs = glob(
29 include = [
30 "**/*.rs",
31 ],
32 exclude = [
33 ],
34 ),
35 aliases = selects.with_or({
36 "//conditions:default": {
37 },
38 }),
39 compile_data = glob(["**"]) + select_with_or({
40 "//conditions:default": [
41 ],
42 }),
43 crate_features = [
44 "default",
45 "serde",
46 "std",
47 ],
48 crate_root = "src/lib.rs",
49 data = select_with_or({
50 "//conditions:default": [
51 ],
52 }),
53 edition = "2021",
54 proc_macro_deps = [
55 ] + select_with_or({
56 "//conditions:default": [
57 ],
58 }),
59 rustc_env = {
60 },
61 rustc_env_files = select_with_or({
62 "//conditions:default": [
63 ],
64 }),
65 rustc_flags = [
66 # In most cases, warnings in 3rd party crates are not interesting as
67 # they're out of the control of consumers. The flag here silences
68 # warnings. For more details see:
69 # https://doc.rust-lang.org/rustc/lints/levels.html
70 "--cap-lints=allow",
71 ] + select_with_or({
72 "//conditions:default": [
73 ],
74 }),
75 tags = [
76 "cargo-bazel",
77 "manual",
78 "noclippy",
79 "norustfmt",
80 ],
81 version = "1.0.0",
82 deps = [
83 ] + select_with_or({
84 "//conditions:default": [
85 "@crate_index__serde-1.0.136//:serde",
86 "@crate_index__static_assertions-1.1.0//:static_assertions",
87 ],
88 }),
89)