We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5135ae commit a5ba44bCopy full SHA for a5ba44b
src/project.rs
@@ -1,5 +1,5 @@
1
use anyhow::{bail, Context, Result};
2
-use serde::{Deserialize, Serialize};
+use serde::Serialize;
3
use std::env;
4
use std::error::Error;
5
use std::path::PathBuf;
@@ -9,13 +9,13 @@ use crate::exercise::Exercise;
9
10
/// Contains the structure of resulting rust-project.json file
11
/// and functions to build the data required to create the file
12
-#[derive(Serialize, Deserialize)]
+#[derive(Serialize)]
13
pub struct RustAnalyzerProject {
14
sysroot_src: String,
15
crates: Vec<Crate>,
16
}
17
18
19
pub struct Crate {
20
root_module: String,
21
edition: String,
0 commit comments