| """ |
| @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 = [ |
| "ammonia", |
| "default", |
| "elasticlunr-rs", |
| "futures-util", |
| "gitignore", |
| "notify", |
| "search", |
| "serve", |
| "tokio", |
| "warp", |
| "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.22", |
| # buildifier: leave-alone |
| deps = [ |
| ":mdbook", |
| "@raze__ammonia__3_3_0//:ammonia", |
| "@raze__anyhow__1_0_68//:anyhow", |
| "@raze__chrono__0_4_23//:chrono", |
| "@raze__clap__3_2_23//:clap", |
| "@raze__clap_complete__3_2_5//:clap_complete", |
| "@raze__elasticlunr_rs__3_0_1//:elasticlunr_rs", |
| "@raze__env_logger__0_9_3//:env_logger", |
| "@raze__futures_util__0_3_25//:futures_util", |
| "@raze__gitignore__1_0_7//:gitignore", |
| "@raze__handlebars__4_3_6//:handlebars", |
| "@raze__log__0_4_17//:log", |
| "@raze__memchr__2_5_0//:memchr", |
| "@raze__notify__4_0_17//:notify", |
| "@raze__once_cell__1_17_0//:once_cell", |
| "@raze__opener__0_5_0//:opener", |
| "@raze__pulldown_cmark__0_9_2//:pulldown_cmark", |
| "@raze__regex__1_7_1//:regex", |
| "@raze__serde__1_0_152//:serde", |
| "@raze__serde_json__1_0_91//:serde_json", |
| "@raze__shlex__1_1_0//:shlex", |
| "@raze__tempfile__3_3_0//:tempfile", |
| "@raze__tokio__1_24_1//:tokio", |
| "@raze__toml__0_5_10//:toml", |
| "@raze__topological_sort__0_1_0//:topological_sort", |
| "@raze__warp__0_3_3//:warp", |
| ], |
| ) |
| |
| # Unsupported target "nop-preprocessor" with type "example" omitted |
| |
| rust_library( |
| name = "mdbook", |
| srcs = glob(["**/*.rs"]), |
| crate_features = [ |
| "ammonia", |
| "default", |
| "elasticlunr-rs", |
| "futures-util", |
| "gitignore", |
| "notify", |
| "search", |
| "serve", |
| "tokio", |
| "warp", |
| "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.22", |
| # buildifier: leave-alone |
| deps = [ |
| "@raze__ammonia__3_3_0//:ammonia", |
| "@raze__anyhow__1_0_68//:anyhow", |
| "@raze__chrono__0_4_23//:chrono", |
| "@raze__clap__3_2_23//:clap", |
| "@raze__clap_complete__3_2_5//:clap_complete", |
| "@raze__elasticlunr_rs__3_0_1//:elasticlunr_rs", |
| "@raze__env_logger__0_9_3//:env_logger", |
| "@raze__futures_util__0_3_25//:futures_util", |
| "@raze__gitignore__1_0_7//:gitignore", |
| "@raze__handlebars__4_3_6//:handlebars", |
| "@raze__log__0_4_17//:log", |
| "@raze__memchr__2_5_0//:memchr", |
| "@raze__notify__4_0_17//:notify", |
| "@raze__once_cell__1_17_0//:once_cell", |
| "@raze__opener__0_5_0//:opener", |
| "@raze__pulldown_cmark__0_9_2//:pulldown_cmark", |
| "@raze__regex__1_7_1//:regex", |
| "@raze__serde__1_0_152//:serde", |
| "@raze__serde_json__1_0_91//:serde_json", |
| "@raze__shlex__1_1_0//:shlex", |
| "@raze__tempfile__3_3_0//:tempfile", |
| "@raze__tokio__1_24_1//:tokio", |
| "@raze__toml__0_5_10//:toml", |
| "@raze__topological_sort__0_1_0//:topological_sort", |
| "@raze__warp__0_3_3//: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 |