Add missing import to owo_colors

This commit is contained in:
KtorZ 2023-03-30 09:21:59 +02:00
parent cc18e7cff2
commit dc500b8e13
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
3 changed files with 6 additions and 6 deletions

1
Cargo.lock generated vendored
View File

@ -105,6 +105,7 @@ dependencies = [
"lsp-server",
"lsp-types",
"miette",
"owo-colors",
"serde",
"serde_json",
"thiserror",

View File

@ -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"

View File

@ -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");