acid/firmware/.vscode/settings.json

26 lines
898 B
JSON

{
"rust-analyzer.linkedProjects": [
"acid-firmware/Cargo.toml"
],
"rust-analyzer.cargo.noDefaultFeatures": true,
"rust-analyzer.cargo.features": ["develop"],
"rust-analyzer.cargo.target": "xtensa-esp32s3-none-elf",
"rust-analyzer.cargo.targetDir": "target/rust-analyzer",
"rust-analyzer.cargo.extraEnv": {
"RUSTUP_TOOLCHAIN": "esp"
},
"rust-analyzer.check.extraArgs": [
"-Zbuild-std=core,alloc"
],
"rust-analyzer.check.extraEnv": {
"EXPLICITLY_INCLUDE_DEFAULT_DIRS": "true",
"XKBCOMMON_BUILD_DIR": "../libxkbcommon/build-esp32s3",
"SPECTRE_API_BUILD_DIR": "../spectre-api-c/build-esp32s3",
"SODIUM_INSTALL_DIR": "../libsodium/install",
"XKBCOMMON_BUILD_DIR_NAME": "build-esp32s3",
"SPECTRE_API_BUILD_DIR_NAME": "build-esp32s3",
"SODIUM_INSTALL_DIR_NAME": "install",
"SLINT_FONT_SIZES": "8,11,10,12,13,14,15,16,18,20,22,24,32"
}
}