mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 17:55:20 +00:00
15 lines
409 B
XML
15 lines
409 B
XML
xflags! {
|
|
/// LSP server for rust.
|
|
cmd rust-analyzer {
|
|
required workspace: PathBuf
|
|
/// Number of concurrent jobs.
|
|
optional jobs: u32
|
|
/// Path to log file. By default, logs go to stderr.
|
|
optional --log-file path: PathBuf
|
|
repeated -v, --verbose
|
|
required -n, --number n: u32
|
|
repeated --data value: OsString
|
|
optional --emoji
|
|
}
|
|
}
|