Release-plz: releasing crates like it's 2023 - Marco Ieni (www.youtube.com)
from notriddle@programming.dev to rust@programming.dev on 04 Mar 2024 16:18
https://programming.dev/post/10982478

#rust

threaded - newest

notriddle@programming.dev on 04 Mar 2024 16:35 next collapse

An interesting point on the TOML configuration file format. You don’t have to abandon the nested structure to get the readable, repeated style. There two TOML sections are the same thing:

[workspace]
git_release.enable = true
git_release.draft = false
[workspace.git_release]
enable = true
draft = false
PlexSheep@feddit.de on 04 Mar 2024 20:07 collapse

I’m working on a similar project. I can’t find the link to the source?