Skip to content

Commit

Permalink
Auto merge of rust-lang#17827 - regexident:improve-crate-manifests-co…
Browse files Browse the repository at this point in the history
…ntinuation, r=lnicola

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

This is a follow-up of rust-lang/rust-analyzer#17745, specifically [this comment](rust-lang/rust-analyzer#17745 (comment)) 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.
  • Loading branch information
bors committed Aug 8, 2024
2 parents 2a6655a + d8bb3c8 commit fe4d83c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit fe4d83c

Please sign in to comment.