Auto merge of #17827 - regexident:improve-crate-manifests-continuation, r=lnicola

Improve crate manifest of 'syntax-bridge', adding missing `[package.repository]` and `[package.description]` fields

This is a follow-up of https://github.com/rust-lang/rust-analyzer/pull/17745, specifically [this comment](https://github.com/rust-lang/rust-analyzer/pull/17745#issuecomment-2271102382) by `@lnicola.`

It refines the manifest of the newly added 'syntax-bridge' crate, adding a `[package.repository]` as `workspace = true` and changes the existing `[package.description]` from "TBD" to a more useful description.
This commit is contained in:
bors 2024-08-08 09:35:56 +00:00
commit b02c6bff7d

View file

@ -1,7 +1,8 @@
[package]
name = "syntax-bridge"
version = "0.0.0"
description = "TBD"
repository.workspace = true
description = "Conversions between syntax nodes and token trees for rust-analyzer."
authors.workspace = true
edition.workspace = true