anki/cargo/remote/BUILD.rusqlite-0.26.1.bazel
Damien Elmes ec0ee4d162 rebuild Rust build files with cargo-raze 0.14.1
Tags are now sorted; updating this before a crate update.
2022-01-15 14:33:53 +10:00

77 lines
1.8 KiB
Plaintext
Vendored

"""
@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 "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
# Unsupported target "cache" with type "bench" omitted
# Unsupported target "exec" with type "bench" omitted
rust_library(
name = "rusqlite",
srcs = glob(["**/*.rs"]),
crate_features = [
"bundled",
"collation",
"functions",
"modern_sqlite",
"trace",
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=rusqlite",
"manual",
],
version = "0.26.1",
# buildifier: leave-alone
deps = [
"@raze__bitflags__1_3_2//:bitflags",
"@raze__fallible_iterator__0_2_0//:fallible_iterator",
"@raze__fallible_streaming_iterator__0_1_9//:fallible_streaming_iterator",
"@raze__hashlink__0_7_0//:hashlink",
"@raze__libsqlite3_sys__0_23_1//:libsqlite3_sys",
"@raze__memchr__2_4_1//:memchr",
"@raze__smallvec__1_7_0//:smallvec",
],
)
# Unsupported target "config_log" with type "test" omitted
# Unsupported target "deny_single_threaded_sqlite_config" with type "test" omitted
# Unsupported target "vtab" with type "test" omitted