@@ -11,15 +11,19 @@ version = "0.5.1"
1111# Useful Cortex-M specific functions (e.g. SysTick)
1212cortex-m = " 0.7"
1313# The Raspberry Pi Pico HAL
14- rp-pico = { version = " 0.7" , default-features = false , features = [ " rt" , " critical-section-impl" , " rom-func-cache" ] }
14+ rp-pico = { version = " 0.7" , default-features = false , features = [
15+ " rt" ,
16+ " critical-section-impl" ,
17+ " rom-func-cache"
18+ ] }
1519# Cortex-M run-time (or start-up) code
1620cortex-m-rt = " 0.7"
1721# The BIOS to OS API
1822neotron-common-bios = " 0.8.0"
1923# For the RP2040 bootloader
2024rp2040-boot2 = " 0.3.0"
2125# For hardware abstraction traits
22- embedded-hal =" 0.2"
26+ embedded-hal = " 0.2"
2327# Gives us formatted PC-side logging
2428defmt = " =0.3.2"
2529# Sends defmt logs to the SWD debugger
@@ -33,9 +37,11 @@ pio-proc = "0.2"
3337# Hardware locks for sharing data with interrupts
3438critical-section = " 1.0"
3539# Commands for talking to a Neotron BMC. The tag is for the repo as a whole, of which the commands crate is a small part.
36- neotron-bmc-commands = { version = " 0.1.0" , git = " https://github.com/neotron-compute/neotron-bmc" , tag = " v0.5.2" }
40+ neotron-bmc-commands = { version = " 0.1.0" , git = " https://github.com/neotron-compute/neotron-bmc" , tag = " v0.5.2" }
3741# Protocol for talking to a Neotron BMC. The tag is for the repo as a whole, of which the protocol crate is a small part.
38- neotron-bmc-protocol = { version = " 0.1.0" , git = " https://github.com/neotron-compute/neotron-bmc" , tag =" v0.5.2" , features = [" defmt" ] }
42+ neotron-bmc-protocol = { version = " 0.1.0" , git = " https://github.com/neotron-compute/neotron-bmc" , tag = " v0.5.2" , features = [
43+ " defmt"
44+ ] }
3945# Time and frequency related functions
4046fugit = " 0.3"
4147# PS/2 scancode decoding
@@ -51,7 +57,9 @@ shared-bus = "0.2"
5157# Gets us compare-swap atomic operations
5258atomic-polyfill = " 1.0.2"
5359# SD Card driver
54- embedded-sdmmc = { version = " 0.5" , default-features = false , features = [" defmt-log" ] }
60+ embedded-sdmmc = { version = " 0.5" , default-features = false , features = [
61+ " defmt-log"
62+ ] }
5563
5664[[bin ]]
5765name = " neotron-pico-bios"
0 commit comments