diff --git a/Cargo.lock b/Cargo.lock index 8ac08c2..1e1a213 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -627,7 +627,7 @@ dependencies = [ [[package]] name = "testing-language-server" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c501b2a..5f2566d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testing-language-server" -version = "0.0.7" +version = "0.0.8" edition = "2021" description = "LSP server for testing" license = "MIT" diff --git a/src/spec.rs b/src/spec.rs index c146888..d159e4a 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -85,8 +85,6 @@ pub type DetectWorkspaceResult = HashMap>; pub struct RunFileTestResultItem { pub path: String, pub diagnostics: Vec, - pub performed_test_ids: Vec, - pub failed_test_ids: Vec, } pub type RunFileTestResult = Vec;