gaucho-labs / leptos-hotkeys

a declarative way of using keyboard shortcuts + callbacks in leptos applications
https://leptos-hotkeys.vercel.app
MIT License
43 stars 8 forks source link

Upgrade dependencies + make crates inherit workspace deps #122

Closed friendlymatthew closed 3 weeks ago

mondeja commented 3 weeks ago

Hi @friendlymatthew. I think that you need to run cargo update.

friendlymatthew commented 3 weeks ago

Hi @friendlymatthew. I think that you need to run cargo update.

Thanks. Removed leptos_theme since that project is no longer alive.

Have you used just? https://github.com/casey/just

It's super nice and so far I've been really enjoying it.

mondeja commented 3 weeks ago

Hi @friendlymatthew. I think that you need to run cargo update.

Thanks. Removed leptos_theme since that project is no longer alive.

Have you used just? https://github.com/casey/just

It's super nice and so far I've been really enjoying it.

Yep, it's nice but never faced a big project with it. I've preferred cargo-make because it was duckscript builtin and that allows to write crossplatform scripts, to make the build pipelines work on Windows as well. Does just have such a thing?

For theming I would recommend leptos-use's use_color_mode and/or use_preferred_dark.

friendlymatthew commented 3 weeks ago

I've preferred cargo-make because it was duckscript builtin and that allows to write crossplatform scripts, to make the build pipelines work on Windows as well. Does just have such a thing?

I'm not sure. FWIW just is just a command runner. I use it at work and so far I just like how simple it is. Very readable as well!