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
When using the lib with nested tables, the script (pretty-format-toml) incorrectly overrides keys of adjacent tables.
pretty-format-toml
E.g. (this was in a Cargo.toml), see >> for effected entries
Cargo.toml
>>
[package] name = "client" readme = "README.md" authors.workspace = true description.workspace = true documentation.workspace = true edition.workspace = true homepage.workspace = true license.workspace = true >> version.workspace = true [package.metadata.release] shared-version = true repository.workspace = true rust-version.workspace = true
[dependencies] serde = {workspace = true, features = ["derive"]} sea-orm.workspace = true >> thiserror.workspace = true [dependencies.sea-orm-migration] features = [ "runtime-tokio-native-tls", "sqlx-postgres" ] workspace = true
[package] name = "client" readme = "README.md" authors.workspace = true description.workspace = true documentation.workspace = true edition.workspace = true homepage.workspace = true license.workspace = true [package.metadata.release] shared-version = true repository.workspace = true rust-version.workspace = true >> version.workspace = true >> version.workspace = true
[dependencies] serde = {workspace = true, features = ["derive"]} sea-orm.workspace = true [dependencies.sea-orm-migration] features = [ "runtime-tokio-native-tls", "sqlx-postgres" ] workspace = true >> thiserror.workspace = true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the lib with nested tables, the script (
pretty-format-toml
) incorrectly overrides keys of adjacent tables.E.g. (this was in a
Cargo.toml
), see>>
for effected entriespreformatted
formatted
The text was updated successfully, but these errors were encountered: