Add toolInfo in MetaData vertex in LSIF dumps

This helps with uploading LSIF dumps to Sourcegraph without having to
specify an indexer name.
This commit is contained in:
Quentin Gliech 2021-10-11 14:45:58 +02:00
parent ed4b312fa7
commit 824b7a8564
No known key found for this signature in database
GPG Key ID: 22D62B84552719FC

View File

@ -254,7 +254,11 @@ pub fn run(self) -> Result<()> {
version: String::from("0.5.0"),
project_root: lsp_types::Url::from_file_path(path).unwrap(),
position_encoding: lsif::Encoding::Utf16,
tool_info: None,
tool_info: Some(lsp_types::lsif::ToolInfo {
name: "rust-analyzer".to_string(),
args: vec![],
version: Some(env!("REV").to_string()),
}),
}));
for file in si.files {
lsif.add_file(file);