mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-27 06:25:42 +03:00
a3f42b19a9
* fix(compatibility): implement most osc methods * style(fmt): rustfmt * style(fmt): remove cargo warnings * style(fmt): make clippy happy * style(fmt): fix formatting after my clippy fixes broke it again ;P * fix(grid): fix tests
23 lines
576 B
TOML
23 lines
576 B
TOML
[package]
|
|
name = "zellij-client"
|
|
version = "0.12.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]
|
|
zellij-utils = { path = "../zellij-utils/", version = "0.12.0" }
|
|
zellij-tile = { path = "../zellij-tile/", version = "0.12.0" }
|
|
termion = "1.5.0"
|
|
signal-hook = "0.3"
|
|
nix = "0.19.1"
|
|
interprocess = "1.1.1"
|
|
libc = "0.2"
|
|
termbg = "0.2.0"
|
|
|
|
[features]
|
|
test = ["zellij-utils/test"]
|