aboutsummaryrefslogtreecommitdiff
path: root/docs/pages/project_structure.adoc
diff options
context:
space:
mode:
authorHiroaki Yutani <[email protected]>2025-05-04 09:39:35 +0900
committerGitHub <[email protected]>2025-05-04 09:39:35 +0900
commit0406b83c526f03567863d80a603db77c514df27f (patch)
tree98424ccdc7dfdef4d1f3ab38a872168fa342c3ba /docs/pages/project_structure.adoc
parent93ff90db04f06316f0992b65a0319ebdf74ce5c4 (diff)
Tweak the example `rust-toolchain.toml` in doc
Diffstat (limited to 'docs/pages/project_structure.adoc')
-rw-r--r--docs/pages/project_structure.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/project_structure.adoc b/docs/pages/project_structure.adoc
index 722ec8d9d..227508b97 100644
--- a/docs/pages/project_structure.adoc
+++ b/docs/pages/project_structure.adoc
@@ -85,9 +85,9 @@ A minimal example:
85[source,toml] 85[source,toml]
86---- 86----
87[toolchain] 87[toolchain]
88channel = "nightly-2023-08-19" # <- as of writing, this is the exact rust version embassy uses 88channel = "1.85" # <- as of writing, this is the exact rust version embassy uses
89components = [ "rust-src", "rustfmt" ] # <- optionally add "llvm-tools-preview" for some extra features like "cargo size" 89components = [ "rust-src", "rustfmt" ] # <- optionally add "llvm-tools-preview" for some extra features like "cargo size"
90targets = [ 90targets = [
91 "thumbv6m-none-eabi" # <-change for your platform 91 "thumbv6m-none-eabi" # <- change for your platform
92] 92]
93---- 93----