mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 08:57:14 +03:00
24 lines
616 B
TOML
24 lines
616 B
TOML
[package]
|
|
name = "zellij-client"
|
|
version = "0.33.0"
|
|
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
|
|
edition = "2021"
|
|
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]
|
|
mio = { version = "0.7.11", features = ['os-ext'] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
url = { version = "2.2.2", features = ["serde"] }
|
|
serde_yaml = "0.8"
|
|
zellij-utils = { path = "../zellij-utils/", version = "0.33.0" }
|
|
log = "0.4.17"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.6.0"
|
|
|
|
[features]
|
|
unstable = [ ]
|