Add missing import to owo_colors
This commit is contained in:
parent
cc18e7cff2
commit
dc500b8e13
|
@ -105,6 +105,7 @@ dependencies = [
|
|||
"lsp-server",
|
||||
"lsp-types",
|
||||
"miette",
|
||||
"owo-colors",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
|
|
|
@ -18,6 +18,7 @@ itertools = "0.10.5"
|
|||
lsp-server = "0.7.0"
|
||||
lsp-types = "0.94.0"
|
||||
miette = "5.5.0"
|
||||
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
|
||||
serde = "1.0.152"
|
||||
serde_json = "1.0.94"
|
||||
thiserror = "1.0.39"
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
use std::env;
|
||||
|
||||
use crate::server::Server;
|
||||
use aiken_project::{config::Config, paths};
|
||||
use error::Error;
|
||||
use lsp_server::Connection;
|
||||
use owo_colors;
|
||||
use std::env;
|
||||
|
||||
mod cast;
|
||||
pub mod error;
|
||||
|
@ -9,10 +11,6 @@ mod line_numbers;
|
|||
pub mod server;
|
||||
mod utils;
|
||||
|
||||
use error::Error;
|
||||
|
||||
use crate::server::Server;
|
||||
|
||||
pub fn start() -> Result<(), Error> {
|
||||
tracing::info!("Aiken language server starting");
|
||||
|
||||
|
|
Loading…
Reference in New Issue