diff options
| -rw-r--r-- | .vscode/settings.json | 6 | ||||
| -rw-r--r-- | Cargo.example.toml | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index e90553506..ceb87ad53 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json | |||
| @@ -3,7 +3,11 @@ | |||
| 3 | "rust-analyzer.checkOnSave.allFeatures": false, | 3 | "rust-analyzer.checkOnSave.allFeatures": false, |
| 4 | "rust-analyzer.checkOnSave.allTargets": false, | 4 | "rust-analyzer.checkOnSave.allTargets": false, |
| 5 | "rust-analyzer.cargo.target": "thumbv7em-none-eabi", | 5 | "rust-analyzer.cargo.target": "thumbv7em-none-eabi", |
| 6 | "rust-analyzer.checkOnSave.target": "thumbv7em-none-eabi", | 6 | "rust-analyzer.cargo.features": [ |
| 7 | // These are needed to prevent embassy-net from failing to build | ||
| 8 | "embassy-net/medium-ethernet", | ||
| 9 | "embassy-net/tcp" | ||
| 10 | ], | ||
| 7 | "rust-analyzer.procMacro.enable": true, | 11 | "rust-analyzer.procMacro.enable": true, |
| 8 | "rust-analyzer.cargo.runBuildScripts": true, | 12 | "rust-analyzer.cargo.runBuildScripts": true, |
| 9 | "files.watcherExclude": { | 13 | "files.watcherExclude": { |
diff --git a/Cargo.example.toml b/Cargo.example.toml index cbb221e7b..d6bc78bdc 100644 --- a/Cargo.example.toml +++ b/Cargo.example.toml | |||
| @@ -22,6 +22,7 @@ members = [ | |||
| 22 | "embassy-traits", | 22 | "embassy-traits", |
| 23 | "embassy-macros", | 23 | "embassy-macros", |
| 24 | "embassy-extras", | 24 | "embassy-extras", |
| 25 | "embassy-net", | ||
| 25 | 26 | ||
| 26 | # Uncomment ONLY ONE of the groups below. | 27 | # Uncomment ONLY ONE of the groups below. |
| 27 | 28 | ||
