Unnamed repository; edit this file 'description' to name the repository.
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.
bors 2024-08-08
parent 935883f · parent b8cf3c4 · commit b02c6bf
-rw-r--r--crates/syntax-bridge/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/syntax-bridge/Cargo.toml b/crates/syntax-bridge/Cargo.toml
index b4f59ae216..e995ff3b55 100644
--- a/crates/syntax-bridge/Cargo.toml
+++ b/crates/syntax-bridge/Cargo.toml
@@ -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