Skip to content

Commit 6f11327

Browse files
committed
chore(deps): Bump deps & Rust edition to 2024
1 parent 2a8e5f4 commit 6f11327

11 files changed

Lines changed: 4353 additions & 3463 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "rustbee"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55

66
[dependencies]
7-
clap = { version = "4.5.37", features = ["derive"] }
8-
color_space = "0.5.3"
9-
tokio = { version = "1.43.0", features = ["fs", "rt", "macros", "signal", "rt-multi-thread", "time"] }
7+
clap = { version = "4.5.49", features = ["derive"] }
8+
color_space = "0.5.4"
9+
tokio = { version = "1.48.0", features = ["fs", "rt", "macros", "signal", "rt-multi-thread", "time"] }
1010
rustbee-common = { path = "rustbee-common" }
11-
btleplug = "0.11.7"
11+
btleplug = "0.11.8"
1212
futures = "0.3.31"

Session.vim

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ badd +75 rustbee-common/src/colors.rs
2424
badd +329 src/cli.rs
2525
badd +9 rustbee-common/Cargo.toml
2626
badd +32 rustbee-common/src/tests.rs
27-
badd +38 Justfile
27+
badd +114 Justfile
2828
badd +12 rustbee-daemon/Justfile
2929
badd +10 rustbee-daemon/Cargo.toml
3030
badd +37 rustbee-common/librustbee.h
31-
badd +166 rustbee-common/src/ffi.rs
31+
badd +25 rustbee-common/src/ffi.rs
3232
badd +128 rustbee-common/src/storage.rs
3333
badd +9 src/address.rs
3434
badd +52 rustbee-common/src/logger.rs
3535
badd +53 .github/workflows/build_and_release.yml
3636
badd +12 CHANGELOG.md
3737
badd +32 TODO.md
38-
badd +74 rustbee-common/src/windows/bluetooth.rs
38+
badd +14 rustbee-common/src/windows/bluetooth.rs
3939
badd +33 rustbee-common/src/device.rs
4040
badd +1 rustbee-common/src/linux/mod.rs
4141
badd +173 rustbee-common/src/linux/device.rs
@@ -56,7 +56,7 @@ badd +19 rustbee-gui/src-tauri/src/state.rs
5656
badd +98 rustbee-gui/src-tauri/src/commands.rs
5757
badd +1 rustbee-gui/Justfile
5858
badd +12 rustbee-gui/src/lib/types.ts
59-
badd +88 rustbee-gui/src/components/header.svelte
59+
badd +125 rustbee-gui/src/components/header.svelte
6060
badd +10 rustbee-gui/tailwind.config.js
6161
badd +10 rustbee-gui/src/styles/tailwind.css
6262
badd +4 rustbee-gui/postcss.config.js
@@ -70,25 +70,25 @@ badd +4 rustbee-gui/src/routes/+layout.svelte
7070
badd +140 rustbee-gui/src/lib/gradients.ts
7171
argglobal
7272
%argdel
73-
edit rustbee-gui/src/components/header.svelte
73+
edit Justfile
7474
argglobal
75-
balt rustbee-gui/src/components/device.svelte
76-
setlocal fdm=manual
77-
setlocal fde=0
78-
setlocal fmr={{{,}}}
79-
setlocal fdi=#
80-
setlocal fdl=0
81-
setlocal fml=1
82-
setlocal fdn=20
83-
setlocal fen
75+
balt rustbee-common/src/ffi.rs
76+
setlocal foldmethod=manual
77+
setlocal foldexpr=0
78+
setlocal foldmarker={{{,}}}
79+
setlocal foldignore=#
80+
setlocal foldlevel=0
81+
setlocal foldminlines=1
82+
setlocal foldnestmax=20
83+
setlocal foldenable
8484
silent! normal! zE
8585
let &fdl = &fdl
86-
let s:l = 125 - ((31 * winheight(0) + 31) / 63)
86+
let s:l = 114 - ((26 * winheight(0) + 26) / 53)
8787
if s:l < 1 | let s:l = 1 | endif
8888
keepjumps exe s:l
8989
normal! zt
90-
keepjumps 125
91-
normal! 044|
90+
keepjumps 114
91+
normal! 08|
9292
lcd ~/work/rustbee
9393
tabnext 1
9494
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
@@ -102,7 +102,6 @@ if filereadable(s:sx)
102102
exe "source " . fnameescape(s:sx)
103103
endif
104104
let &g:so = s:so_save | let &g:siso = s:siso_save
105-
nohlsearch
106105
doautoall SessionLoadPost
107106
unlet SessionLoad
108107
" vim: set ft=vim :

0 commit comments

Comments
 (0)