⬆️ xflags
This commit is contained in:
parent
71b8fb7c57
commit
0296cd590e
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -1919,18 +1919,18 @@ checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xflags"
|
name = "xflags"
|
||||||
version = "0.1.4"
|
version = "0.2.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "222e914b43cec5d7305ac5116d10a14b3a52c50e9062d642c92631f3beabc729"
|
checksum = "59ad6ce6a0b7224130015b4ebac796478ac04e0079f5d222a690efea06a9208a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"xflags-macros",
|
"xflags-macros",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xflags-macros"
|
name = "xflags-macros"
|
||||||
version = "0.1.4"
|
version = "0.2.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "52f18f5b4aa7f95e209d5b9274f6164c3938920b4d5c75f97f0dd16daee25ddd"
|
checksum = "c8037d3ca14996158b03c0fa905d0834906ef0fc7044df72c1f5ff690e5e62c9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
]
|
]
|
||||||
|
@ -24,7 +24,7 @@ jod-thread = "0.1.0"
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
lsp-types = { version = "0.88.0", features = ["proposed"] }
|
lsp-types = { version = "0.88.0", features = ["proposed"] }
|
||||||
parking_lot = "0.11.0"
|
parking_lot = "0.11.0"
|
||||||
xflags = "0.1.2"
|
xflags = "0.2.1"
|
||||||
oorandom = "11.1.2"
|
oorandom = "11.1.2"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
serde = { version = "1.0.106", features = ["derive"] }
|
serde = { version = "1.0.106", features = ["derive"] }
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
use rust_analyzer::cli::{BenchWhat, Position, Verbosity};
|
use rust_analyzer::cli::{BenchWhat, Position, Verbosity};
|
||||||
use vfs::AbsPathBuf;
|
use vfs::AbsPathBuf;
|
||||||
|
|
||||||
xflags::args_parser! {
|
xflags::xflags! {
|
||||||
|
src "./src/bin/flags.rs"
|
||||||
|
|
||||||
/// LSP server for the Rust programming language.
|
/// LSP server for the Rust programming language.
|
||||||
cmd rust-analyzer {
|
cmd rust-analyzer {
|
||||||
/// Verbosity level, can be repeated multiple times.
|
/// Verbosity level, can be repeated multiple times.
|
||||||
@ -120,7 +122,7 @@
|
|||||||
|
|
||||||
// generated start
|
// generated start
|
||||||
// The following code is generated by `xflags` macro.
|
// The following code is generated by `xflags` macro.
|
||||||
// Run `env XFLAGS_DUMP= cargo build` to regenerate.
|
// Run `env UPDATE_XFLAGS=1 cargo build` to regenerate.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct RustAnalyzer {
|
pub struct RustAnalyzer {
|
||||||
pub verbose: u32,
|
pub verbose: u32,
|
||||||
@ -158,7 +160,7 @@ pub struct Parse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Symbols {}
|
pub struct Symbols;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Highlight {
|
pub struct Highlight {
|
||||||
@ -211,14 +213,13 @@ pub struct Search {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct ProcMacro {}
|
pub struct ProcMacro;
|
||||||
|
|
||||||
impl RustAnalyzer {
|
impl RustAnalyzer {
|
||||||
pub const HELP: &'static str = Self::_HELP;
|
pub const HELP: &'static str = Self::HELP_;
|
||||||
|
|
||||||
pub fn from_env() -> xflags::Result<Self> {
|
pub fn from_env() -> xflags::Result<Self> {
|
||||||
let mut p = xflags::rt::Parser::new_from_env();
|
Self::from_env_()
|
||||||
Self::_parse(&mut p)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// generated end
|
// generated end
|
||||||
|
@ -15,5 +15,5 @@ ungrammar = "=1.11"
|
|||||||
walkdir = "2.3.1"
|
walkdir = "2.3.1"
|
||||||
write-json = "0.1.0"
|
write-json = "0.1.0"
|
||||||
xshell = "0.1"
|
xshell = "0.1"
|
||||||
xflags = "0.1.2"
|
xflags = "0.2.1"
|
||||||
# Avoid adding more dependencies to this crate
|
# Avoid adding more dependencies to this crate
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
use crate::install::{ClientOpt, Malloc, ServerOpt};
|
use crate::install::{ClientOpt, Malloc, ServerOpt};
|
||||||
|
|
||||||
xflags::args_parser! {
|
xflags::xflags! {
|
||||||
|
src "./src/flags.rs"
|
||||||
|
|
||||||
/// Run custom build command.
|
/// Run custom build command.
|
||||||
cmd xtask {
|
cmd xtask {
|
||||||
default cmd help {
|
default cmd help {
|
||||||
@ -55,7 +57,7 @@
|
|||||||
|
|
||||||
// generated start
|
// generated start
|
||||||
// The following code is generated by `xflags` macro.
|
// The following code is generated by `xflags` macro.
|
||||||
// Run `env XFLAGS_DUMP= cargo build` to regenerate.
|
// Run `env UPDATE_XFLAGS=1 cargo build` to regenerate.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Xtask {
|
pub struct Xtask {
|
||||||
pub subcommand: XtaskCmd,
|
pub subcommand: XtaskCmd,
|
||||||
@ -96,13 +98,13 @@ pub struct Codegen {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Lint {}
|
pub struct Lint;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct FuzzTests {}
|
pub struct FuzzTests;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct PreCache {}
|
pub struct PreCache;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Release {
|
pub struct Release {
|
||||||
@ -131,11 +133,10 @@ pub struct Bb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Xtask {
|
impl Xtask {
|
||||||
pub const HELP: &'static str = Self::_HELP;
|
pub const HELP: &'static str = Self::HELP_;
|
||||||
|
|
||||||
pub fn from_env() -> xflags::Result<Self> {
|
pub fn from_env() -> xflags::Result<Self> {
|
||||||
let mut p = xflags::rt::Parser::new_from_env();
|
Self::from_env_()
|
||||||
Self::_parse(&mut p)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// generated end
|
// generated end
|
||||||
|
Loading…
Reference in New Issue
Block a user