Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jul 2, 2024
1 parent 9900def commit 68666b4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 17 deletions.
33 changes: 21 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,35 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] }
embedded-time = "0.12.1"
enumset = { version = "1.1.3", optional = true }
nb = "1.1.0"
num-traits = { version = "0.2.17", default-features = false}
paste = "1.0.14"
rtcc = { version = "0.3.0", optional = true }
stm32-usbd = { version = "0.6.0", optional = true }
num-traits = { version = "0.2.19", default-features = false}
paste = "1.0.15"
rtcc = { version = "0.3.2", optional = true }
stm32-usbd = { version = "0.7.0", optional = true }
stm32f3 = { version = "0.15.1", default-features = false }
void = { version = "1.0.2", default-features = false }

[dev-dependencies]
cortex-m-rtic = "1.1"
cortex-m-semihosting = "0.5.0"
defmt = "0.3.5"
defmt-rtt = "0.4.0"
defmt-test = "0.3.1"
panic-probe = "0.3.1"
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
defmt = "0.3.8"
defmt-rtt = "0.4.1"
defmt-test = "0.3.2"
panic-probe = "0.3.2"
panic-rtt-target = "0.1.3"
panic-semihosting = "0.6.0"
rtt-target = { version = "0.4.0" }
rtt-target = { version = "0.5.0" }
systick-monotonic = "1.0"
usb-device = "0.3.1"
usbd-serial = "0.2.0"
usb-device = "0.3.2"
usbd-serial = "0.2.2"

# Unblock minimal dependency version check
# [dependencies.proc-macro2]
# version = ">=1.0.86"
# default-features = false
#
# [dependencies.syn]
# version = "2.0.68"
# default-features = false

[build-dependencies]
slice-group-by = "0.3.1"
Expand Down
10 changes: 5 additions & 5 deletions testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ harness = false
cfg-if = "1.0"
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.3"
defmt = "0.3.5"
defmt-rtt = "0.4.0"
defmt-test = "0.3.1"
defmt = "0.3.8"
defmt-rtt = "0.4.1"
defmt-test = "0.3.2"
enumset = { version = "1.1.3" }
# TODO: Set stm32f303xc as default, but make it overwritable
stm32f3xx-hal = { path = "..", features = ["defmt"]}
panic-probe = { version = "0.3.1", features = ["print-defmt"] }
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
nb = "1.1.0"
num-traits = { version = "0.2.17", default-features = false }
num-traits = { version = "0.2.19", default-features = false }

[features]
# enable all defmt logging levels
Expand Down

0 comments on commit 68666b4

Please sign in to comment.