solar-config 0.2.0

Solar compiler configuration
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Options for running the LSP server.
#[derive(Default)]
#[cfg_attr(feature = "clap", derive(clap::Args))]
pub struct LspArgs {
    /// Use standard input/output for LSP transport.
    ///
    /// This is the default, and ignored.
    /// This argument is recommended by the LSP specification.
    #[cfg_attr(feature = "clap", arg(long, hide = true))]
    pub stdio: bool,
}