pbls 1.2.1

Protobuf Language Server
Documentation
1
2
3
4
5
6
7
fn main() -> anyhow::Result<()> {
    env_logger::init();
    let (connection, io_threads) = lsp_server::Connection::stdio();
    pbls::run(connection)?;
    io_threads.join()?;
    Ok(())
}