make pyo/ring data arguments more specific

This commit is contained in:
Damien Elmes 2020-12-01 15:05:20 +10:00
parent 4c3577b12e
commit 9a1ddec553
4 changed files with 6 additions and 6 deletions

View File

@ -28,10 +28,10 @@ genmode = "Remote"
default_gen_buildrs = true
[package.metadata.raze.crates.pyo3.'*']
data_attr = "glob([\"**\"])"
data_attr = "glob([\"**/*.md\"])"
[package.metadata.raze.crates.ring.'*']
data_attr = "glob([\"src/**\"])"
data_attr = "glob([\"src/**/*.der\"])"
[package.metadata.raze.crates.webpki.'*']
data_attr = "glob([\"src/**\"])"
data_attr = "glob([\"src/**/*.der\"])"

View File

@ -97,7 +97,7 @@ rust_library(
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = glob(["**"]),
data = glob(["**/*.md"]),
edition = "2018",
proc_macro_deps = [
"@raze__ctor__0_1_16//:ctor",

View File

@ -119,7 +119,7 @@ rust_library(
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = glob(["src/**"]),
data = glob(["src/**/*.der"]),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",

View File

@ -40,7 +40,7 @@ rust_library(
],
crate_root = "src/webpki.rs",
crate_type = "lib",
data = glob(["src/**"]),
data = glob(["src/**/*.der"]),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",