Skip to content

Commit

Permalink
deps: update to panic-halt 1.0.0, riscv 0.12.1 and thiserror 2.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: Zhouqi Jiang <[email protected]>
  • Loading branch information
luojia65 committed Nov 27, 2024
1 parent e1254ad commit cb44ca1
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion blri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions bouffalo-rt/examples/blinky-bl616/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions bouffalo-rt/examples/blinky-bl808/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions examples/multicore/multicore-demo/dsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/multicore/multicore-demo/mcu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/gpio-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/i2c-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/jtag-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/lz4d-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/peripherals/psram-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/pwm-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions examples/peripherals/spi-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/peripherals/uart-cli-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/peripherals/uart-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit cb44ca1

Please sign in to comment.