We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9801c92 commit bc7a3dcCopy full SHA for bc7a3dc
vhdl_ls/Cargo.toml
@@ -22,6 +22,7 @@ lsp-types = "^0.63"
22
fnv = "^1"
23
log = "0.4.6"
24
env_logger = "0.6.0"
25
+clap = "^2"
26
27
[dev-dependencies]
28
tempfile = "^3"
vhdl_ls/src/main.rs
@@ -11,6 +11,14 @@ extern crate log;
11
use env_logger;
12
13
fn main() {
14
+ use clap::App;
15
+
16
+ let _matches = App::new(env!("CARGO_PKG_NAME"))
17
+ .version(env!("CARGO_PKG_VERSION"))
18
+ .author(env!("CARGO_PKG_AUTHORS"))
19
+ .about(env!("CARGO_PKG_DESCRIPTION"))
20
+ .get_matches();
21
env_logger::init();
info!("Starting language server");
vhdl_ls::start();
0 commit comments