mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
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:
commit
b02c6bff7d
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue