|  | """ | 
|  | @generated | 
|  | cargo-raze crate build file. | 
|  |  | 
|  | DO NOT EDIT! Replaced on runs of cargo-raze | 
|  | """ | 
|  |  | 
|  | # buildifier: disable=load | 
|  | load("@bazel_skylib//lib:selects.bzl", "selects") | 
|  |  | 
|  | # buildifier: disable=load | 
|  | load( | 
|  | "@rules_rust//rust:defs.bzl", | 
|  | "rust_binary", | 
|  | "rust_library", | 
|  | "rust_proc_macro", | 
|  | "rust_test", | 
|  | ) | 
|  |  | 
|  | package(default_visibility = [ | 
|  | # Public for visibility by "@raze__crate__version//" targets. | 
|  | # | 
|  | # Prefer access through "//third_party/rust/cargo", which limits external | 
|  | # visibility to explicit Cargo.toml dependencies. | 
|  | "//visibility:public", | 
|  | ]) | 
|  |  | 
|  | licenses([ | 
|  | "reciprocal",  # MPL-2.0 from expression "MPL-2.0" | 
|  | ]) | 
|  |  | 
|  | # Generated Targets | 
|  |  | 
|  | rust_binary( | 
|  | # Prefix bin name to disambiguate from (probable) collision with lib name | 
|  | # N.B.: The exact form of this is subject to change. | 
|  | name = "cargo_bin_mdbook", | 
|  | srcs = glob(["**/*.rs"]), | 
|  | crate_features = [ | 
|  | "default", | 
|  | "search", | 
|  | "serve", | 
|  | "watch", | 
|  | ], | 
|  | crate_root = "src/main.rs", | 
|  | data = [] + [ | 
|  | "src/theme/playground_editor/ace.js", | 
|  | "src/theme/playground_editor/editor.js", | 
|  | "src/theme/playground_editor/mode-rust.js", | 
|  | "src/theme/playground_editor/theme-dawn.js", | 
|  | "src/theme/playground_editor/theme-tomorrow_night.js", | 
|  | "src/theme/fonts/OPEN-SANS-LICENSE.txt", | 
|  | "src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt", | 
|  | "src/theme/fonts/fonts.css", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-300.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-600.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-700.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-800.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-regular.woff2", | 
|  | "src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2", | 
|  | "src/theme/searcher/elasticlunr.min.js", | 
|  | "src/theme/searcher/mark.min.js", | 
|  | "src/theme/searcher/searcher.js", | 
|  | "src/theme/ayu-highlight.css", | 
|  | "src/theme/book.js", | 
|  | "src/theme/clipboard.min.js", | 
|  | "src/theme/favicon.png", | 
|  | "src/theme/favicon.svg", | 
|  | "src/theme/head.hbs", | 
|  | "src/theme/header.hbs", | 
|  | "src/theme/highlight.css", | 
|  | "src/theme/highlight.js", | 
|  | "src/theme/index.hbs", | 
|  | "src/theme/redirect.hbs", | 
|  | "src/theme/tomorrow-night.css", | 
|  | "src/theme/css/chrome.css", | 
|  | "src/theme/css/general.css", | 
|  | "src/theme/css/print.css", | 
|  | "src/theme/css/variables.css", | 
|  | "src/theme/FontAwesome/css/font-awesome.min.css", | 
|  | "src/theme/FontAwesome/fonts/FontAwesome.otf", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.eot", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.svg", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.ttf", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.woff", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.woff2", | 
|  | ], | 
|  | edition = "2021", | 
|  | rustc_env = { | 
|  | "PATH": "/usr/bin", | 
|  | }, | 
|  | rustc_flags = [ | 
|  | "--cap-lints=allow", | 
|  | ], | 
|  | tags = [ | 
|  | "cargo-raze", | 
|  | "crate-name=mdbook", | 
|  | "manual", | 
|  | ], | 
|  | version = "0.4.35", | 
|  | # buildifier: leave-alone | 
|  | deps = [ | 
|  | ":mdbook", | 
|  | "@raze__ammonia__3_3_0//:ammonia", | 
|  | "@raze__anyhow__1_0_75//:anyhow", | 
|  | "@raze__chrono__0_4_31//:chrono", | 
|  | "@raze__clap__4_4_6//:clap", | 
|  | "@raze__clap_complete__4_4_3//:clap_complete", | 
|  | "@raze__elasticlunr_rs__3_0_2//:elasticlunr_rs", | 
|  | "@raze__env_logger__0_10_0//:env_logger", | 
|  | "@raze__futures_util__0_3_28//:futures_util", | 
|  | "@raze__handlebars__4_4_0//:handlebars", | 
|  | "@raze__ignore__0_4_20//:ignore", | 
|  | "@raze__log__0_4_20//:log", | 
|  | "@raze__memchr__2_6_4//:memchr", | 
|  | "@raze__notify__6_1_1//:notify", | 
|  | "@raze__notify_debouncer_mini__0_3_0//:notify_debouncer_mini", | 
|  | "@raze__once_cell__1_18_0//:once_cell", | 
|  | "@raze__opener__0_6_1//:opener", | 
|  | "@raze__pulldown_cmark__0_9_3//:pulldown_cmark", | 
|  | "@raze__regex__1_9_6//:regex", | 
|  | "@raze__serde__1_0_188//:serde", | 
|  | "@raze__serde_json__1_0_107//:serde_json", | 
|  | "@raze__shlex__1_2_0//:shlex", | 
|  | "@raze__tempfile__3_8_0//:tempfile", | 
|  | "@raze__tokio__1_32_0//:tokio", | 
|  | "@raze__toml__0_5_11//:toml", | 
|  | "@raze__topological_sort__0_2_2//:topological_sort", | 
|  | "@raze__warp__0_3_6//:warp", | 
|  | ], | 
|  | ) | 
|  |  | 
|  | # Unsupported target "nop-preprocessor" with type "example" omitted | 
|  |  | 
|  | rust_library( | 
|  | name = "mdbook", | 
|  | srcs = glob(["**/*.rs"]), | 
|  | crate_features = [ | 
|  | "default", | 
|  | "search", | 
|  | "serve", | 
|  | "watch", | 
|  | ], | 
|  | crate_root = "src/lib.rs", | 
|  | data = [] + [ | 
|  | "src/theme/playground_editor/ace.js", | 
|  | "src/theme/playground_editor/editor.js", | 
|  | "src/theme/playground_editor/mode-rust.js", | 
|  | "src/theme/playground_editor/theme-dawn.js", | 
|  | "src/theme/playground_editor/theme-tomorrow_night.js", | 
|  | "src/theme/fonts/OPEN-SANS-LICENSE.txt", | 
|  | "src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt", | 
|  | "src/theme/fonts/fonts.css", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-300.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-600.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-700.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-800.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-italic.woff2", | 
|  | "src/theme/fonts/open-sans-v17-all-charsets-regular.woff2", | 
|  | "src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2", | 
|  | "src/theme/searcher/elasticlunr.min.js", | 
|  | "src/theme/searcher/mark.min.js", | 
|  | "src/theme/searcher/searcher.js", | 
|  | "src/theme/ayu-highlight.css", | 
|  | "src/theme/book.js", | 
|  | "src/theme/clipboard.min.js", | 
|  | "src/theme/favicon.png", | 
|  | "src/theme/favicon.svg", | 
|  | "src/theme/head.hbs", | 
|  | "src/theme/header.hbs", | 
|  | "src/theme/highlight.css", | 
|  | "src/theme/highlight.js", | 
|  | "src/theme/index.hbs", | 
|  | "src/theme/redirect.hbs", | 
|  | "src/theme/tomorrow-night.css", | 
|  | "src/theme/css/chrome.css", | 
|  | "src/theme/css/general.css", | 
|  | "src/theme/css/print.css", | 
|  | "src/theme/css/variables.css", | 
|  | "src/theme/FontAwesome/css/font-awesome.min.css", | 
|  | "src/theme/FontAwesome/fonts/FontAwesome.otf", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.eot", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.svg", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.ttf", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.woff", | 
|  | "src/theme/FontAwesome/fonts/fontawesome-webfont.woff2", | 
|  | ], | 
|  | edition = "2021", | 
|  | rustc_env = { | 
|  | "PATH": "/usr/bin", | 
|  | }, | 
|  | rustc_flags = [ | 
|  | "--cap-lints=allow", | 
|  | ], | 
|  | tags = [ | 
|  | "cargo-raze", | 
|  | "crate-name=mdbook", | 
|  | "manual", | 
|  | ], | 
|  | version = "0.4.35", | 
|  | # buildifier: leave-alone | 
|  | deps = [ | 
|  | "@raze__ammonia__3_3_0//:ammonia", | 
|  | "@raze__anyhow__1_0_75//:anyhow", | 
|  | "@raze__chrono__0_4_31//:chrono", | 
|  | "@raze__clap__4_4_6//:clap", | 
|  | "@raze__clap_complete__4_4_3//:clap_complete", | 
|  | "@raze__elasticlunr_rs__3_0_2//:elasticlunr_rs", | 
|  | "@raze__env_logger__0_10_0//:env_logger", | 
|  | "@raze__futures_util__0_3_28//:futures_util", | 
|  | "@raze__handlebars__4_4_0//:handlebars", | 
|  | "@raze__ignore__0_4_20//:ignore", | 
|  | "@raze__log__0_4_20//:log", | 
|  | "@raze__memchr__2_6_4//:memchr", | 
|  | "@raze__notify__6_1_1//:notify", | 
|  | "@raze__notify_debouncer_mini__0_3_0//:notify_debouncer_mini", | 
|  | "@raze__once_cell__1_18_0//:once_cell", | 
|  | "@raze__opener__0_6_1//:opener", | 
|  | "@raze__pulldown_cmark__0_9_3//:pulldown_cmark", | 
|  | "@raze__regex__1_9_6//:regex", | 
|  | "@raze__serde__1_0_188//:serde", | 
|  | "@raze__serde_json__1_0_107//:serde_json", | 
|  | "@raze__shlex__1_2_0//:shlex", | 
|  | "@raze__tempfile__3_8_0//:tempfile", | 
|  | "@raze__tokio__1_32_0//:tokio", | 
|  | "@raze__toml__0_5_11//:toml", | 
|  | "@raze__topological_sort__0_2_2//:topological_sort", | 
|  | "@raze__warp__0_3_6//:warp", | 
|  | ], | 
|  | ) | 
|  |  | 
|  | # Unsupported target "alternative_backends" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "build_process" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "cli_tests" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "custom_preprocessors" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "init" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "parse_existing_summary_files" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "rendered_output" with type "test" omitted | 
|  |  | 
|  | # Unsupported target "testing" with type "test" omitted |