2021-05-16 14:12:50 +03:00
|
|
|
[package]
|
|
|
|
name = "zellij-client"
|
2022-12-13 19:24:19 +03:00
|
|
|
version = "0.34.5"
|
2021-05-16 14:12:50 +03:00
|
|
|
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
|
2021-10-22 04:21:16 +03:00
|
|
|
edition = "2021"
|
2021-05-16 14:12:50 +03:00
|
|
|
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]
|
2022-01-04 21:19:53 +03:00
|
|
|
mio = { version = "0.7.11", features = ['os-ext'] }
|
2022-10-05 08:44:00 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
|
|
|
serde_yaml = "0.8"
|
2023-02-17 21:32:07 +03:00
|
|
|
serde_json = "1.0"
|
2022-12-13 19:24:19 +03:00
|
|
|
zellij-utils = { path = "../zellij-utils/", version = "0.34.5" }
|
2022-05-09 19:32:36 +03:00
|
|
|
log = "0.4.17"
|
2021-05-16 14:12:50 +03:00
|
|
|
|
2021-06-30 12:27:35 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
insta = "1.6.0"
|
|
|
|
|
2022-03-09 23:21:15 +03:00
|
|
|
[features]
|
2022-06-25 22:48:00 +03:00
|
|
|
unstable = [ ]
|