blob: f735a519eb92d4760a5d4ef642e080c41db5caa7 [file] [log] [blame]
Brian Silverman547eda02022-05-19 23:14:08 -07001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
13 "@rules_rust//rust:defs.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_proc_macro",
17 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
30])
31
32# Generated Targets
33
34# Unsupported target "format_str" with type "bench" omitted
35
36# Unsupported target "parse_str" with type "bench" omitted
37
38# Unsupported target "v4" with type "bench" omitted
39
40# Unsupported target "random_uuid" with type "example" omitted
41
Brian Silvermana7ba2512022-12-19 19:13:52 -080042# Unsupported target "sortable_uuid" with type "example" omitted
43
Brian Silverman547eda02022-05-19 23:14:08 -070044# Unsupported target "uuid_macro" with type "example" omitted
45
46# Unsupported target "windows_guid" with type "example" omitted
47
48rust_library(
49 name = "uuid",
50 srcs = glob(["**/*.rs"]),
51 crate_features = [
52 "default",
53 "std",
54 ],
55 crate_root = "src/lib.rs",
56 data = [],
57 edition = "2018",
58 rustc_flags = [
59 "--cap-lints=allow",
60 ],
61 tags = [
62 "cargo-raze",
63 "crate-name=uuid",
64 "manual",
65 ],
Brian Silvermana7ba2512022-12-19 19:13:52 -080066 version = "1.2.2",
Brian Silverman547eda02022-05-19 23:14:08 -070067 # buildifier: leave-alone
68 deps = [
69 ],
70)
71
72# Unsupported target "macros" with type "test" omitted