Skip to content

Commit bba7df9

Browse files
committed
upgrade dependencies
1 parent 1f49511 commit bba7df9

File tree

4 files changed

+52
-52
lines changed

4 files changed

+52
-52
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax=docker.io/docker/dockerfile:1.19
1+
# syntax=docker.io/docker/dockerfile:1.20
22
# shellcheck shell=bash
33

44
# see https://github.com/rust-lang/rustup/tags/
@@ -7,7 +7,7 @@ ARG RUSTUP_INIT_VERSION='1.28.2'
77

88
# see https://github.com/cargo-bins/cargo-binstall/releases
99
# renovate: datasource=github-releases depName=cargo-bins/cargo-binstall
10-
ARG CARGO_BINSTALL_VERSION='1.15.9'
10+
ARG CARGO_BINSTALL_VERSION='1.16.2'
1111

1212
# see https://github.com/esp-rs/espup/releases/
1313
# renovate: datasource=github-releases depName=esp-rs/espup
@@ -30,7 +30,7 @@ ARG ESPFLASH_VERSION='4.2.0'
3030
# see https://crates.io/crates/esp-generate
3131
# see https://github.com/esp-rs/esp-generate/releases
3232
# renovate: datasource=github-releases depName=esp-rs/esp-generate
33-
ARG ESP_GENERATE_VERSION='1.0.0'
33+
ARG ESP_GENERATE_VERSION='1.0.1'
3434

3535
# see https://github.com/devcontainers/images/tree/main/src/base-debian/history
3636
FROM mcr.microsoft.com/devcontainers/base:2.0.2-trixie

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
args: --all-features --workspace -- -D warnings
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Setup Rust
2727
uses: esp-rs/xtensa-toolchain@v1.6
2828
with:

Cargo.lock

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bin/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async fn main(_spawner: Spawner) -> ! {
2323
let config = esp_hal::Config::default().with_cpu_clock(CpuClock::max());
2424
let peripherals = esp_hal::init(config);
2525

26-
esp_alloc::heap_allocator!(#[unsafe(link_section = ".dram2_uninit")] size: 98767);
26+
esp_alloc::heap_allocator!(#[esp_hal::ram(reclaimed)] size: 98768);
2727

2828
let timg0 = TimerGroup::new(peripherals.TIMG0);
2929
esp_rtos::start(timg0.timer0);

0 commit comments

Comments
 (0)