* feat(status-bar): add draft for multiple tips * feat: add TIPS_MAP * Simplified 'tip' function. * chore: update file structure * feat(status-bar): update method of Tip rendering * feat(status-bar): change type of tip in State * refactor(status-bar): related to random tip selection * feat(status-bar): add simple local cache for testing * feat(status-bar): add cache system for tip data * Add mpadir to wasm for plugin to access zellij temp folder. * refactor(status-bar): update cache and utils * fix(status-bar): update file read error * refactor(status-bar): update macros * chore(status-bar): delete test data * chore(status-bar): update missing fixes * feat(status-bar): add detailed error * style: make clippy
17 lines
No EOL
408 B
TOML
17 lines
No EOL
408 B
TOML
[package]
|
|
name = "status-bar"
|
|
version = "0.1.0"
|
|
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
colored = "2"
|
|
ansi_term = "0.12"
|
|
lazy_static = "1.4.0"
|
|
rand = "0.8.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.30"
|
|
zellij-tile = { path = "../../zellij-tile" }
|
|
zellij-tile-utils = { path = "../../zellij-tile-utils" } |