mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-24 11:25:19 +03:00
c11d75f915
* strider resiliency * worker channel prototype * finalized ui * show hide plugin * fs events to plugins * tests for events and new screen instructions * various refactoringz * report plugin errors instead of crashing zellij * fix plugin loading with workers * refactor: move watch filesystem * some fixes and refactoring * refactor(panes): combine pane insertion logic * refactor(screen): launch or focus * refactor(pty): consolidate default shell fetching * refactor: various cleanups * initial refactoring * more initial refactoring * refactor(strider): search * style(fmt): rustfmt * style(pty): cleanup * style(clippy): ok clippy * style(fmt): rustfmt
20 lines
484 B
TOML
20 lines
484 B
TOML
[package]
|
|
name = "strider"
|
|
version = "0.2.0"
|
|
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
|
|
edition = "2021"
|
|
description = "A simplified ranger clone written as a Zellij plugin"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
colored = "2.0.0"
|
|
zellij-tile = { path = "../../zellij-tile" }
|
|
pretty-bytes = "0.2.2"
|
|
walkdir = "2.3.3"
|
|
fuzzy-matcher = "0.3.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
unicode-width = "0.1.8"
|
|
ansi_term = "0.12.1"
|
|
strip-ansi-escapes = "0.1.1"
|