askama/fuzzing/Cargo.toml
René Kijewski b49e42f0ea Use cargo reference manifest section order
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>
2024-12-13 10:00:48 +01:00

20 lines
291 B
TOML

[package]
name = "rinja_fuzzing"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
fuzz = { path = "fuzz" }
arbitrary = "1.4.1"
pretty-error-debug = "0.3.0"
thiserror = "2.0.3"
[profile.release]
debug = 1
[workspace]
members = [".", "fuzz"]