eupn / macrotest

Test harness for declarative and procedural macros expansion via `cargo-expand`
49 stars 9 forks source link

Replace toml with basic-toml #93

Closed taiki-e closed 1 year ago

taiki-e commented 1 year ago

As trybuild did (https://github.com/dtolnay/trybuild/commit/0e38544cb78e318f27364ed7e8c17aa0744c0e53), replace toml with basic-toml.

As far as I know, basic-toml is faster to build and has fewer dependencies than toml 0.7. Also, the MSRV of toml 0.7 is 1.64, while the MSRV of basic-toml is 1.56, the same as the MSRV of macrotest.

Closes #86