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:
parent
ed4b312fa7
commit
824b7a8564
1 changed files with 5 additions and 1 deletions
|
|
@ -254,7 +254,11 @@ impl flags::Lsif {
|
|||
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue