From cb44ca1ab4e0f225b04a396f549e68aacabd71a6 Mon Sep 17 00:00:00 2001 From: Zhouqi Jiang Date: Wed, 27 Nov 2024 16:30:32 +0800 Subject: [PATCH] deps: update to panic-halt 1.0.0, riscv 0.12.1 and thiserror 2.0.3 Signed-off-by: Zhouqi Jiang --- blri/Cargo.toml | 2 +- bouffalo-rt/examples/blinky-bl616/Cargo.toml | 4 ++-- bouffalo-rt/examples/blinky-bl808/Cargo.toml | 4 ++-- examples/multicore/multicore-demo/dsp/Cargo.toml | 4 ++-- examples/multicore/multicore-demo/mcu/Cargo.toml | 4 ++-- examples/peripherals/gpio-demo/Cargo.toml | 4 ++-- examples/peripherals/i2c-demo/Cargo.toml | 4 ++-- examples/peripherals/jtag-demo/Cargo.toml | 4 ++-- examples/peripherals/lz4d-demo/Cargo.toml | 4 ++-- examples/peripherals/psram-demo/Cargo.toml | 2 +- examples/peripherals/pwm-demo/Cargo.toml | 4 ++-- examples/peripherals/spi-demo/Cargo.toml | 4 ++-- examples/peripherals/uart-cli-demo/Cargo.toml | 2 +- examples/peripherals/uart-demo/Cargo.toml | 2 +- 14 files changed, 24 insertions(+), 24 deletions(-) diff --git a/blri/Cargo.toml b/blri/Cargo.toml index 2ae7d21..56a09b4 100644 --- a/blri/Cargo.toml +++ b/blri/Cargo.toml @@ -10,7 +10,7 @@ byteorder = "1.5.0" clap = { version = "4.5.18", features = ["derive"] } crc = "3.2.1" sha2 = "0.10.8" -thiserror = "1.0.64" +thiserror = "2.0.3" [dev-dependencies] tempfile = "3.12.0" diff --git a/bouffalo-rt/examples/blinky-bl616/Cargo.toml b/bouffalo-rt/examples/blinky-bl616/Cargo.toml index b9722d3..e34be61 100644 --- a/bouffalo-rt/examples/blinky-bl616/Cargo.toml +++ b/bouffalo-rt/examples/blinky-bl616/Cargo.toml @@ -9,8 +9,8 @@ publish = false [dependencies] bouffalo-rt = { version = "0.0.0", path = "../..", features = ["bl616"]} embedded-hal = "1.0.0" -panic-halt = "0.2.0" -riscv = "0.11.1" +panic-halt = "1.0.0" +riscv = "0.12.1" [[bin]] name = "blinky-bl616" diff --git a/bouffalo-rt/examples/blinky-bl808/Cargo.toml b/bouffalo-rt/examples/blinky-bl808/Cargo.toml index bde4ea1..a1eaebc 100644 --- a/bouffalo-rt/examples/blinky-bl808/Cargo.toml +++ b/bouffalo-rt/examples/blinky-bl808/Cargo.toml @@ -9,8 +9,8 @@ publish = false [dependencies] bouffalo-rt = { path = "../.." } embedded-hal = "1.0.0" -panic-halt = "0.2.0" -riscv = "0.11.1" +panic-halt = "1.0.0" +riscv = "0.12.1" [features] default = ["bl808-dsp"] diff --git a/examples/multicore/multicore-demo/dsp/Cargo.toml b/examples/multicore/multicore-demo/dsp/Cargo.toml index 9c6a778..b54d3ae 100644 --- a/examples/multicore/multicore-demo/dsp/Cargo.toml +++ b/examples/multicore/multicore-demo/dsp/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" [dependencies] bouffalo-hal = { path = "../../../../bouffalo-hal", features = ["bl808"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" -riscv = "0.11.1" +riscv = "0.12.1" [dependencies.bouffalo-rt] path = "../../../../bouffalo-rt" diff --git a/examples/multicore/multicore-demo/mcu/Cargo.toml b/examples/multicore/multicore-demo/mcu/Cargo.toml index c9c3dfd..3e1f1b3 100644 --- a/examples/multicore/multicore-demo/mcu/Cargo.toml +++ b/examples/multicore/multicore-demo/mcu/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] bouffalo-hal = { path = "../../../../bouffalo-hal", features = ["bl808"] } -panic-halt = "0.2.0" -riscv = "0.11.1" +panic-halt = "1.0.0" +riscv = "0.12.1" [dependencies.bouffalo-rt] path = "../../../../bouffalo-rt" diff --git a/examples/peripherals/gpio-demo/Cargo.toml b/examples/peripherals/gpio-demo/Cargo.toml index 7e563b7..3220c77 100644 --- a/examples/peripherals/gpio-demo/Cargo.toml +++ b/examples/peripherals/gpio-demo/Cargo.toml @@ -9,9 +9,9 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-hal = "1.0.0" -riscv = "0.11.1" +riscv = "0.12.1" [[bin]] name = "gpio-demo" diff --git a/examples/peripherals/i2c-demo/Cargo.toml b/examples/peripherals/i2c-demo/Cargo.toml index d19013e..6ce448a 100644 --- a/examples/peripherals/i2c-demo/Cargo.toml +++ b/examples/peripherals/i2c-demo/Cargo.toml @@ -9,9 +9,9 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" -riscv = "0.11.1" +riscv = "0.12.1" [[bin]] name = "i2c-demo" diff --git a/examples/peripherals/jtag-demo/Cargo.toml b/examples/peripherals/jtag-demo/Cargo.toml index 753a884..576160e 100644 --- a/examples/peripherals/jtag-demo/Cargo.toml +++ b/examples/peripherals/jtag-demo/Cargo.toml @@ -9,8 +9,8 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" -riscv = "0.11.1" +panic-halt = "1.0.0" +riscv = "0.12.1" [[bin]] name = "jtag-demo" diff --git a/examples/peripherals/lz4d-demo/Cargo.toml b/examples/peripherals/lz4d-demo/Cargo.toml index 7133312..268226a 100644 --- a/examples/peripherals/lz4d-demo/Cargo.toml +++ b/examples/peripherals/lz4d-demo/Cargo.toml @@ -9,10 +9,10 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-hal = "1.0.0" embedded-time = "0.12.1" -riscv = "0.11.1" +riscv = "0.12.1" [[bin]] name = "lz4d-demo" diff --git a/examples/peripherals/psram-demo/Cargo.toml b/examples/peripherals/psram-demo/Cargo.toml index b723e8d..231a94d 100644 --- a/examples/peripherals/psram-demo/Cargo.toml +++ b/examples/peripherals/psram-demo/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" [[bin]] diff --git a/examples/peripherals/pwm-demo/Cargo.toml b/examples/peripherals/pwm-demo/Cargo.toml index 5d96d0a..9efaadf 100644 --- a/examples/peripherals/pwm-demo/Cargo.toml +++ b/examples/peripherals/pwm-demo/Cargo.toml @@ -9,9 +9,9 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" -riscv = "0.11.1" +riscv = "0.12.1" [[bin]] name = "pwm-demo" diff --git a/examples/peripherals/spi-demo/Cargo.toml b/examples/peripherals/spi-demo/Cargo.toml index 54b2a66..955be38 100644 --- a/examples/peripherals/spi-demo/Cargo.toml +++ b/examples/peripherals/spi-demo/Cargo.toml @@ -9,10 +9,10 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" embedded-hal = "1.0.0" -riscv = "0.11.1" +riscv = "0.12.1" display-interface-spi = "0.5.0" mipidsi = "0.8.0" embedded-graphics = "0.8.1" diff --git a/examples/peripherals/uart-cli-demo/Cargo.toml b/examples/peripherals/uart-cli-demo/Cargo.toml index 53b2e8a..abe0438 100644 --- a/examples/peripherals/uart-cli-demo/Cargo.toml +++ b/examples/peripherals/uart-cli-demo/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" embedded-cli = "0.2.1" diff --git a/examples/peripherals/uart-demo/Cargo.toml b/examples/peripherals/uart-demo/Cargo.toml index e7c8196..c609ab6 100644 --- a/examples/peripherals/uart-demo/Cargo.toml +++ b/examples/peripherals/uart-demo/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] bouffalo-hal = { path = "../../../bouffalo-hal", features = ["bl808"] } bouffalo-rt = { path = "../../../bouffalo-rt", features = ["bl808-dsp"] } -panic-halt = "0.2.0" +panic-halt = "1.0.0" embedded-time = "0.12.1" [[bin]]