b74166bc78
Gives us wildcard entries in raze.toml, and solves warnings about unrecognized "raze" entries.
75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
"""
|
|
@generated
|
|
cargo-raze crate build file.
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
"""
|
|
|
|
# buildifier: disable=load
|
|
load(
|
|
"@io_bazel_rules_rust//rust:rust.bzl",
|
|
"rust_binary",
|
|
"rust_library",
|
|
"rust_test",
|
|
)
|
|
|
|
# buildifier: disable=load
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
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",
|
|
crate_type = "lib",
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "0.24.1",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__bitflags__1_2_1//:bitflags",
|
|
"@raze__fallible_iterator__0_2_0//:fallible_iterator",
|
|
"@raze__fallible_streaming_iterator__0_1_9//:fallible_streaming_iterator",
|
|
"@raze__hashlink__0_6_0//:hashlink",
|
|
"@raze__libsqlite3_sys__0_20_1//:libsqlite3_sys",
|
|
"@raze__memchr__2_3_4//:memchr",
|
|
"@raze__smallvec__1_4_2//: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
|