Skip to content

Commit 753a393

Browse files
committed
ci: bump deps
1 parent fab1730 commit 753a393

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- { rust: stable, vendor: Spansion, options: "--atomics" }
7676
- { rust: stable, vendor: STMicro, options: "" }
7777
- { rust: stable, vendor: STMicro, options: "--atomics" }
78-
- { rust: stable, vendor: STM32-patched, options: "--strict --const_generic --pascal_enum_values --max_cluster_size --atomics" }
78+
- { rust: stable, vendor: STM32-patched, options: "--strict --const_generic --pascal_enum_values --max_cluster_size --atomics --atomics_feature atomics" }
7979
- { rust: stable, vendor: Toshiba, options: all }
8080
- { rust: stable, vendor: Toshiba, options: "" }
8181
# Test MSRV

ci/script.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ main() {
4040

4141
# test crate
4242
cargo init --name foo $td
43-
echo 'cortex-m = "0.7.4"' >> $td/Cargo.toml
44-
echo 'cortex-m-rt = "0.7.1"' >> $td/Cargo.toml
43+
echo 'cortex-m = "0.7.7"' >> $td/Cargo.toml
44+
echo 'cortex-m-rt = "0.7.3"' >> $td/Cargo.toml
4545
echo 'vcell = "0.1.3"' >> $td/Cargo.toml
4646
if [[ "$options" == *"--atomics"* ]]; then
47-
echo 'portable-atomic = { version = "0.3.16", default-features = false }' >> $td/Cargo.toml
47+
echo 'portable-atomic = { version = "1.4", default-features = false }' >> $td/Cargo.toml
4848
fi
4949
echo '[profile.dev]' >> $td/Cargo.toml
5050
echo 'incremental = false' >> $td/Cargo.toml

0 commit comments

Comments
 (0)