anki/cargo/raze.toml
Damien Elmes b74166bc78 update to cargo-raze 0.7.0 + latest deps
Gives us wildcard entries in raze.toml, and solves warnings about
unrecognized "raze" entries.
2020-11-10 09:48:42 +10:00

35 lines
733 B
TOML

[package]
name = "dummy"
version = "0.0.0"
edition = "2018"
[lib]
name = "anki"
path = "src/lib.rs"
[package.metadata.raze]
workspace_path = "//cargo"
targets = [
"i686-apple-darwin",
"i686-pc-windows-msvc",
"i686-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-apple-ios",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-apple-ios",
]
genmode = "Remote"
default_gen_buildrs = true
[package.metadata.raze.crates.pyo3.'*']
data_attr = "glob([\"**\"])"
[package.metadata.raze.crates.ring.'*']
data_attr = "glob([\"src/**\"])"
[package.metadata.raze.crates.webpki.'*']
data_attr = "glob([\"src/**\"])"
# WARNING: don't edit the dependencies below, they are generated by update.py