* tests(integration): move basic integration tests to be unit tests * fix(tests): silently fail threadbus for tests * tests(unit): move compatibility tests to become unit tests for grid * tests(unit): move close_pane tests to become unit tests for grid * tests(e2e): move basic layout test to e2e * tests(unit): move move_focus tests to be unit tests * tests(unit): move resize_down tests to be unit tests * tests(unit): move resize_left tests to be unit tests * tests(unit): move resize_right tests to be unit tests * tests(unit): move resize_up tests to be unit tests * tests(infra): remove unused infra * style(fmt): make rustfmt happy * debug * debug * debug * debug * chore(test): shift volume mounting around because github actions is a special child
19 lines
460 B
TOML
19 lines
460 B
TOML
[package]
|
|
name = "zellij-client"
|
|
version = "0.14.0"
|
|
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
|
|
edition = "2018"
|
|
description = "The client-side library for Zellij"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
termbg = "0.2.3"
|
|
zellij-utils = { path = "../zellij-utils/", version = "0.14.0" }
|
|
|
|
[dev-dependencies]
|
|
insta = "1.6.0"
|
|
|
|
[features]
|
|
test = ["zellij-utils/test"]
|