Skip to content

Commit

Permalink
Add library crate
Browse files Browse the repository at this point in the history
  • Loading branch information
efoerster committed Jun 25, 2019
1 parent 2285f2b commit 5d81461
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
17 changes: 17 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#![feature(await_macro, async_await, futures_api)]

pub mod build;
pub mod completion;
pub mod definition;
pub mod feature;
pub mod folding;
pub mod formatting;
pub mod highlight;
pub mod link;
pub mod lsp;
pub mod range;
pub mod reference;
pub mod rename;
pub mod server;
pub mod syntax;
pub mod workspace;
24 changes: 3 additions & 21 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,29 +1,11 @@
#![feature(await_macro, async_await, futures_api)]

mod build;
mod completion;
mod definition;
mod feature;
mod folding;
mod formatting;
mod highlight;
mod hover;
mod link;
mod lsp;
mod metadata;
mod range;
mod reference;
mod rename;
mod server;
mod syntax;
mod workspace;

use crate::completion::latex::data::actor::LatexComponentDatabaseActor;
use crate::server::LatexLspServer;
use crate::workspace::WorkspaceActor;
use clap::*;
use futures::executor::*;
use futures::prelude::*;
use texlab::lsp;
use texlab::server::LatexLspServer;
use texlab::workspace::WorkspaceActor;
use tokio_stdin_stdout;

fn main() {
Expand Down

0 comments on commit 5d81461

Please sign in to comment.