mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-27 13:00:57 +00:00

In [#131] I added a check that ensures that the section in `Cargo.toml` (and there values) are in a specific order. I invented the order quite randomly, in the order which I thought might be useful. This PR changes the order to be the same as in Cargo's reference about [The Manifest Format]. Also some missing softlinks were added. [#131]: <https://github.com/rinja-rs/rinja/pull/131> [The Manifest Format]: <https://doc.rust-lang.org/cargo/reference/manifest.html>
24 lines
412 B
TOML
24 lines
412 B
TOML
# Keep in the same order as <https://doc.rust-lang.org/cargo/reference/manifest.html>
|
|
table_order = [
|
|
"package",
|
|
# targets
|
|
"lib",
|
|
"bin",
|
|
"example",
|
|
"test",
|
|
"bench",
|
|
# dependencies
|
|
"dependencies",
|
|
"dev-dependencies",
|
|
"build-dependencies",
|
|
"target",
|
|
# misc
|
|
"badges",
|
|
"features",
|
|
"lints",
|
|
"patch",
|
|
"replace",
|
|
"profile",
|
|
"workspace",
|
|
]
|