diff options
| author | bors <bors@rust-lang.org> | 2024-08-08 09:35:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-08 09:35:56 +0000 |
| commit | fe4d83c462af359382c6ca6146fbb1cc950811f9 (patch) | |
| tree | f08ac8d29494e7e454ccd228b3927151051e4925 | |
| parent | 2a6655a9d7ac37111d151aa54ff81ebbfa859afb (diff) | |
| parent | d8bb3c80f5e81d39730692883b6e7b47c321a78f (diff) | |
| download | rust-fe4d83c462af359382c6ca6146fbb1cc950811f9.tar.gz rust-fe4d83c462af359382c6ca6146fbb1cc950811f9.zip | |
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.
| -rw-r--r-- | src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml b/src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml index b4f59ae216d..e995ff3b55b 100644 --- a/src/tools/rust-analyzer/crates/syntax-bridge/Cargo.toml +++ b/src/tools/rust-analyzer/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 |
