Skip to content

Commit d644165

Browse files
committed
Update direct dependencies:
- tinybmp v0.5.0 - Depends on embedded-graphics 0.8 - embedded-graphics v0.8 - Lots new features and fixes - fugit 0.3.7 Signed-off-by: Daniel Schaefer <[email protected]>
1 parent b58731a commit d644165

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

Cargo.lock

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

b1display/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ usb-device= "0.2.9"
2424
heapless = "0.7.16"
2525
usbd-serial = "0.1.1"
2626
usbd-hid = "0.6.1"
27-
fugit = "0.3.6"
27+
fugit = "0.3.7"
2828

29-
st7306 = "0.8.2"
30-
embedded-graphics = "0.7"
31-
tinybmp = "0.4.0"
29+
st7306 = { git = "https://github.com/FrameworkComputer/st7306-rs", branch = "update-deps" }
30+
embedded-graphics = "0.8"
31+
tinybmp = "0.5.0"
3232

3333
[dependencies.fl16-inputmodules]
3434
path = "../fl16-inputmodules"

c1minimal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ usb-device= "0.2.9"
2424
heapless = "0.7.16"
2525
usbd-serial = "0.1.1"
2626
usbd-hid = "0.6.1"
27-
fugit = "0.3.6"
27+
fugit = "0.3.7"
2828

2929
smart-leds = "0.3.0"
3030
ws2812-pio = "0.6.0"

fl16-inputmodules/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ rp2040-hal = { version="0.8", features=["rt", "critical-section-impl"] }
1919
rp2040-boot2 = "0.3"
2020

2121
# USB Serial
22-
usb-device= "0.2.9"
22+
usb-device = "0.2.9"
2323

2424
heapless = "0.7.16"
2525
usbd-serial = "0.1.1"
2626
usbd-hid = "0.6.1"
27-
fugit = "0.3.6"
27+
fugit = "0.3.7"
2828
num = { version = "0.4", default-features = false }
2929
num-derive = "0.3"
3030
num-traits = { version = "0.2", default-features = false }
3131

3232
# LED Matrix
33-
is31fl3741 = { git = "https://github.com/JohnAZoidberg/is31fl3741", branch = "all-at-once", optional = true }
33+
is31fl3741 = { git = "https://github.com/JohnAZoidberg/is31fl3741", branch = "all-at-once-update-deps", optional = true }
3434

3535
# B1 Display
36-
st7306 = { version = "0.8.2", optional = true }
37-
embedded-graphics = { version = "0.7", optional = true }
38-
tinybmp = { version = "0.4.0", optional = true }
36+
st7306 = { git = "https://github.com/FrameworkComputer/st7306-rs", branch = "update-deps", optional = true }
37+
embedded-graphics = { version = "0.8", optional = true }
38+
tinybmp = { version = "0.5.0", optional = true }
3939

4040
# C1 Minimal
4141
smart-leds = { version = "0.3.0", optional = true }

inputmodule-control/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@ name = "inputmodule-control"
44
version = "0.1.4"
55

66
[dependencies]
7-
clap = { version = "4.2", features = ["derive"] }
8-
serialport = "4.2.0"
7+
clap = { version = "4.3", features = ["derive"] }
8+
serialport = "4.2.1"
99

1010
# For ledmatrix
11-
chrono = "0.4.24"
11+
chrono = "0.4.26"
1212
image = { version = "0.24.6", default-features = false, features = [
1313
"ico",
1414
"gif",
1515
] }
1616
rand = "0.8.5"
1717

1818
# For audio visualizations
19+
# Depending on an experimental crate, therefore optional dependency
1920
vis-core = { git = 'https://github.com/Rahix/visualizer2.git', rev = '1fe908012a9c156695921f3b6bb47178e1332b92', optional = true }
2021
[features]
2122
audio-visualizations = ["vis-core"]

ledmatrix/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ usb-device= "0.2.9"
2424
heapless = "0.7.16"
2525
usbd-serial = "0.1.1"
2626
usbd-hid = "0.6.1"
27-
fugit = "0.3.6"
27+
fugit = "0.3.7"
2828

29-
is31fl3741 = { git = "https://github.com/JohnAZoidberg/is31fl3741", branch = "all-at-once", optional = true }
29+
is31fl3741 = { git = "https://github.com/JohnAZoidberg/is31fl3741", branch = "all-at-once-update-deps", optional = true }
3030

3131
[dependencies.fl16-inputmodules]
3232
path = "../fl16-inputmodules"

0 commit comments

Comments
 (0)