From bbecf67545c2bd6822b0680673aa850c5ddef9f3 Mon Sep 17 00:00:00 2001 From: Sakarias Johansson Date: Tue, 10 Jan 2023 17:54:39 +0100 Subject: =?UTF-8?q?=F0=9F=94=A8=20Refactors=20&=20Use=20rayon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - All data shared between threads are now Arcs since the data is immutable. - Remove tokio - Rustified main --- racer-tracer/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'racer-tracer/src/error.rs') diff --git a/racer-tracer/src/error.rs b/racer-tracer/src/error.rs index f581b08..ac78c91 100644 --- a/racer-tracer/src/error.rs +++ b/racer-tracer/src/error.rs @@ -1,6 +1,6 @@ use thiserror::Error; -#[derive(Error, Debug)] +#[derive(Clone, Error, Debug)] pub enum TracerError { #[error("Unknown error: {message}")] Unknown { message: String, exit_code: i32 }, -- cgit v1.2.3