You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
752 B
28 lines
752 B
2 months ago
|
[package]
|
||
|
cargo-toml-patch-comments = [
|
||
|
"""\
|
||
|
Where possible, patch out \"support for common crates\" features. Many of \
|
||
|
these have satisfiable dependencies and could be packaged if something \
|
||
|
specifically requires them. Upstream plans to remove these \
|
||
|
crate-integration features in 1.0: \
|
||
|
https://github.com/rkyv/rkyv/blob/89a1bc48229ca6ac5ee620964d778293270257d0/rkyv/Cargo.toml#L29-L32\
|
||
|
""",
|
||
|
"""\
|
||
|
Patch out the ui test, which seems to require *all* integrations, even the \
|
||
|
patched-out ones\
|
||
|
""",
|
||
|
]
|
||
|
|
||
|
[requires]
|
||
|
build = [
|
||
|
"dos2unix",
|
||
|
"tomcli",
|
||
|
]
|
||
|
|
||
|
[scripts.prep]
|
||
|
pre = [
|
||
|
"# Do not depend on divan; it is needed only for benchmarks.",
|
||
|
"tomcli set Cargo.toml del dev-dependencies.divan",
|
||
|
]
|
||
|
|