Skip to content

Update toolchain, get rid of the std-features hack #281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-10
toolchain: nightly-2022-06-13
override: true
components: rust-src
- name: Install avr-gcc, binutils, and libc
Expand Down
1 change: 0 additions & 1 deletion examples/arduino-diecimila/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude diecimila"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/arduino-leonardo/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude leonardo"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/arduino-mega2560/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude -cb 57600 mega2560"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/arduino-nano/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude nano -cb 57600"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/arduino-uno/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude uno -cb 57600"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/nano168/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude nano168 -cb 57600"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/sparkfun-promicro/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude promicro"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/trinket-pro/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude trinket-pro"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
1 change: 0 additions & 1 deletion examples/trinket/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ runner = "ravedude trinket"

[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2022-05-10"
channel = "nightly-2022-06-13"
components = [ "rust-src" ]
profile = "minimal"