Skip to content

Commit 1ed790a

Browse files
authored
Merge pull request #68 from Neotron-Compute/format-toml
Reformat the Cargo.toml file.
2 parents 83a12dc + 8834dd1 commit 1ed790a

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ version = "0.5.1"
1111
# Useful Cortex-M specific functions (e.g. SysTick)
1212
cortex-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
1620
cortex-m-rt = "0.7"
1721
# The BIOS to OS API
1822
neotron-common-bios = "0.8.0"
1923
# For the RP2040 bootloader
2024
rp2040-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
2428
defmt = "=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
3438
critical-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
4046
fugit = "0.3"
4147
# PS/2 scancode decoding
@@ -51,7 +57,9 @@ shared-bus = "0.2"
5157
# Gets us compare-swap atomic operations
5258
atomic-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]]
5765
name = "neotron-pico-bios"

0 commit comments

Comments
 (0)