Skip to content

Commit 8a4a7b2

Browse files
committed
Resolve conflicts and apply requested changes
1 parent 2e52129 commit 8a4a7b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/rust-analyzer/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ config_data! {
166166
/// set to a path relative to the workspace to use that path.
167167
cargo_targetDir | rust_analyzerTargetDir: Option<TargetDirectory> = None,
168168
/// Unsets the implicit `#[cfg(test)]` for the specified crates.
169-
cargo_unsetTest: Vec<String> = @verbatim: r#"["core"]"#,
169+
cargo_unsetTest: Vec<String> = vec!["core".to_owned()],
170170

171171
/// Run the check command for diagnostics on save.
172172
checkOnSave | checkOnSave_enable: bool = true,
@@ -2037,7 +2037,7 @@ mod single_or_array {
20372037

20382038
#[derive(Serialize, Deserialize, Debug, Clone)]
20392039
#[serde(untagged)]
2040-
enum ManifestOrProjectJson {
2040+
pub(crate) enum ManifestOrProjectJson {
20412041
Manifest(Utf8PathBuf),
20422042
ProjectJson(ProjectJsonData),
20432043
}

0 commit comments

Comments
 (0)