Skip to content

Commit fe4d83c

Browse files
committed
Auto merge of rust-lang#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 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.
2 parents 2a6655a + d8bb3c8 commit fe4d83c

File tree

1 file changed

+2
-1
lines changed
  • src/tools/rust-analyzer/crates/syntax-bridge

1 file changed

+2
-1
lines changed

src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "syntax-bridge"
33
version = "0.0.0"
4-
description = "TBD"
4+
repository.workspace = true
5+
description = "Conversions between syntax nodes and token trees for rust-analyzer."
56

67
authors.workspace = true
78
edition.workspace = true

0 commit comments

Comments
 (0)