Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pfetch finally decided to update their dependencies #233

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ on any of those, please let us know!:
switch from one another. This is useful for running the stack in predeterministic modes: for example Data acquisition,
Full autonomy, Charging, etc.
- [ ] **Microcontroller and RTOS support**: port all the crates to be able to run in with "nostd" so we can run on
microcontrollers. This would allow a seemless environment for high level on a standard kernel (ML inference etc...)
microcontrollers. This would allow a seamless environment for high level on a standard kernel (ML inference etc...)
and low level tasks on MCUs (control, HW interfacing...).
- [ ] **Parallel Copper Lists**: allow Copper lists to get executed in a staggered and parallel way to improve
throughput.
Expand Down
16 changes: 8 additions & 8 deletions components/monitors/cu_consolemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ cu29 = { workspace = true }
cu29-log-runtime = { workspace = true }
compact_str = { workspace = true }
ratatui = "0.29"
pfetch-logo-parser = "0.1"
pfetch = "2.11"
dotenvy = "0.15"
libmacchina = "7.3" # 8.0.0+ is not supported by pfetch at the time of writing
ansi-to-tui = "7.0"
tui-nodes = "0.8"
tui-widgets = "0.4" # 0.4.0 brings ratatui 0.29
color-eyre = "0.6"
pfetch-logo-parser = "0.1.1"
pfetch = "2.11.1"
dotenvy = "0.15.7"
libmacchina = "8.0.0" # 8.0.0+ is not supported by pfetch at the time of writing
ansi-to-tui = "7.0.0"
tui-nodes = "0.8.0"
tui-widgets = "0.4.1"
color-eyre = "0.6.3"
gag = "1.0.0"
log = { version = "0.4.25", features = ["std"], optional = true }
chrono = { version = "0.4.39", optional = true }
Expand Down
Loading