We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With Cargo.toml as
[dependencies] amq-protocol = "6" anyhow = "1" bytes = "1" diesel = { version = "1.4", features = ["postgres"] } dotenv = "0.15.0" lazy_static = "1" regex = "1" serde = "1" tokio = {version="1", features=["net", "io-util", "rt", "macros", "rt-multi-thread"] } [dev-dependencies] celery = "0.4.0-rcn.11" simplelog = "*" [package] edition = "2021" name = "cavalcade" version = "0.1.0"
and tomlfmt.toml as
table_order = ["package", "dependencies", "dev-dependencies"]
it gets reordered to
[package] edition = "2021" name = "cavalcade" version = "0.1.0" [dependencies] amq-protocol = "6" anyhow = "1" bytes = "1" diesel = { version = "1.4", features = ["postgres"] } dotenv = "0.15.0" lazy_static = "1" regex = "1" serde = "1" tokio = { version = "1", features = ["net", "io-util", "rt", "macros", "rt-multi-thread"] } [dev-dependencies] celery = "0.4.0-rcn.11" simplelog = "*"
Note the newline at the top of the file, and the lack of newline before dependencies
dependencies
The text was updated successfully, but these errors were encountered:
Fixing this manually is easy and the tool is happy after that, so thanks for making it though!
Sorry, something went wrong.
Thanks for catching this, it may be easy to fix but it should work 😄
I'll look into it unless you are interested?
I'm unlikely to pick this up any time soon as I've got too many other things on my plate currently.
No branches or pull requests
With Cargo.toml as
and tomlfmt.toml as
it gets reordered to
Note the newline at the top of the file, and the lack of newline before
dependencies
The text was updated successfully, but these errors were encountered: