Support rust analysis

This is supposed to enable rust analysis for the staff ship only.
This commit is contained in:
Paolo Tranquilli
2025-02-19 15:56:52 +01:00
parent d99c7e8e5b
commit a7b17782a9
16 changed files with 186 additions and 13 deletions

7
tests/multi-language-repo/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "test"
version = "0.0.1"

View File

@@ -0,0 +1,8 @@
[package]
name = "test"
version = "0.0.1"
edition = "2021"
[[bin]]
name = "main"
path = "main.rs"

View File

@@ -0,0 +1,6 @@
fn main() {
if true {
println!("Hello world!")
}
}