1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# @generated from third_party/rust/chromium_crates_io/BUILD.gn.hbs by
# tools/crates/gnrt.
# Do not edit!
import("//build/rust/cargo_crate.gni")
cargo_crate("lib") {
crate_name = "combine"
epoch = "4"
crate_type = "rlib"
crate_root =
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/lib.rs"
sources = [
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/error.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/future_ext.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/lib.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/byte.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/char.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/choice.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/combinator.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/error.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/function.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/mod.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/range.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/regex.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/repeat.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/sequence.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/parser/token.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/buf_reader.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/buffered.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/decoder.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/easy.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/mod.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/position.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/read.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/span.rs",
"//third_party/rust/chromium_crates_io/vendor/combine-v4/src/stream/state.rs",
]
inputs = []
build_native_rust_unit_tests = false
edition = "2018"
cargo_pkg_authors = "Markus Westerlind <marwes91@gmail.com>"
cargo_pkg_name = "combine"
cargo_pkg_description =
"Fast parser combinators on arbitrary streams with zero-copy support."
cargo_pkg_version = "4.6.7"
allow_unsafe = true
deps = [
"//third_party/rust/bytes/v1:lib",
"//third_party/rust/memchr/v2:lib",
]
features = [
"alloc",
"bytes",
"default",
"std",
]
# Only for usage from third-party crates. Add the crate to
# //third_party/rust/chromium_crates_io/Cargo.toml to use
# it from first-party code.
visibility = [ "//third_party/rust/*" ]
#####################################################################
# Tweaking which GN `config`s apply to this target.
# Config changes that apply to all `//third_party/rust` crates.
_configs_to_remove = [
# We don't need code coverage data for any `chromium_crates_io` crates.
"//build/config/coverage:default_coverage",
# This is third-party code, so remove `chromium_code` config. We are not
# at the same time adding `//build/config/compiler:no_chromium_code`,
# because 1) we don't want to pull how warnings are handled by that config
# and 2) that config doesn't have any non-warnings-related stuff.
"//build/config/compiler:chromium_code",
]
_configs_to_add = []
# Changing (if needed) which configs apply to this specific crate (based on
# `extra_kv.configs_to_remove` and `extra_kv.configs_to_add` from
# `gnrt_config.toml`).
_configs_to_remove += []
_configs_to_add += []
# Applying config changes.
library_configs -= _configs_to_remove
library_configs += _configs_to_add
executable_configs -= _configs_to_remove
executable_configs += _configs_to_add
proc_macro_configs -= _configs_to_remove
proc_macro_configs += _configs_to_add
}
|