Fix dependency versions for renovate
This commit is contained in:
parent
dec43b2788
commit
f3ad182403
3 changed files with 15 additions and 15 deletions
|
@ -5,10 +5,10 @@ edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[dependencies]
|
[dependencies]
|
||||||
panic-halt = "0.2"
|
panic-halt = "0.2.0"
|
||||||
avr-device = "*"
|
avr-device = "0.4.0"
|
||||||
arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" }
|
arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" }
|
||||||
ufmt = "*"
|
ufmt = "0.2.0"
|
||||||
|
|
||||||
# Configure the build for minimal size - AVRs have very little program memory
|
# Configure the build for minimal size - AVRs have very little program memory
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
|
|
|
@ -4,22 +4,22 @@ name = "pico-pedal"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7"
|
cortex-m = "0.7.6"
|
||||||
cortex-m-rt = "0.7"
|
cortex-m-rt = "0.7.2"
|
||||||
embedded-hal = { version = "0.2.7", features = ["unproven"] }
|
embedded-hal = { version = "0.2.7", features = ["unproven"] }
|
||||||
embedded-time = "0.12"
|
embedded-time = "0.12.1"
|
||||||
|
|
||||||
defmt = "0.3"
|
defmt = "0.3.2"
|
||||||
defmt-rtt = "0.3"
|
defmt-rtt = "0.3"
|
||||||
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
|
||||||
|
|
||||||
usb-device= "0.2"
|
usb-device= "0.2.9"
|
||||||
usbd-serial = "0.1"
|
usbd-serial = "0.1.1"
|
||||||
|
|
||||||
# We're using a Pico by default on this template
|
# We're using a Pico by default on this template
|
||||||
rp-pico = "0.6"
|
rp-pico = "0.6.0"
|
||||||
|
|
||||||
numtoa = "*"
|
numtoa = "0.2.4"
|
||||||
|
|
||||||
# but you can use any BSP. Uncomment this to use the pro_micro_rp2040 BSP instead
|
# but you can use any BSP. Uncomment this to use the pro_micro_rp2040 BSP instead
|
||||||
# sparkfun-pro-micro-rp2040 = "0.3"
|
# sparkfun-pro-micro-rp2040 = "0.3"
|
||||||
|
|
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serialport = "*"
|
serialport = "4.2.0"
|
||||||
gtk = { version = "*", features = ["v3_24"] }
|
gtk = { version = "0.16.2", features = ["v3_24"] }
|
||||||
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
||||||
glib = "*"
|
glib = "0.16.7"
|
||||||
|
|
Loading…
Reference in a new issue