zellij-org--zellij
dd0bc96284
Rust / Test (ubuntu-latest) (push) Failing after 1s
Rust / Integration Test (ubuntu-latest) (push) Failing after 2s
Rust / Build (ubuntu-latest) (push) Failing after 1s
Rust / Test (No Web) (push) Failing after 0s
Rust / Check Formatting (push) Failing after 2s
End to End tests / Build generic binary and run tests on it (push) Failing after 6m22s
Rust / Build (macos-latest) (push) Has been cancelled
Rust / Build (Windows) (push) Has been cancelled
Rust / Test (macos-latest) (push) Has been cancelled
Rust / Test (Windows) (push) Has been cancelled
78 行
2.7 KiB
TOML
78 行
2.7 KiB
TOML
[package]
|
|
name = "zellij-server"
|
|
version.workspace = true
|
|
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
|
|
edition.workspace = true
|
|
description = "The server-side library for Zellij"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ansi_term = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
arrayvec = { version = "0.7.2", default-features = false, features = ["std"] }
|
|
async-trait = { version = "0.1.50", default-features = false }
|
|
base64 = { version = "0.13.0", default-features = false, features = ["std"] }
|
|
byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
|
|
bytes = { version = "1.6.0", default-features = false, features = ["std"] }
|
|
cassowary = { version = "0.3.0", default-features = false }
|
|
chrono = { version = "0.4.19", default-features = false, features = ["std", "clock"] }
|
|
crossbeam = { version = "0.8", default-features = false, features = ["crossbeam-channel", "std"] }
|
|
highway = { version = "0.6.4", default-features = false, features = ["std"] }
|
|
interprocess = { workspace = true }
|
|
isahc = { workspace = true }
|
|
kdl = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
log = { workspace = true }
|
|
notify-debouncer-full = { workspace = true }
|
|
prost = { workspace = true }
|
|
regex = { workspace = true }
|
|
semver = { version = "0.11.0", default-features = false }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sixel-image = { version = "0.2.1", default-features = false }
|
|
sixel-tokenizer = { version = "0.1.0", default-features = false }
|
|
sysinfo = { version = "0.37", default-features = false, features = ["system"] }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|
|
typetag = { version = "0.1.7", default-features = false }
|
|
unicode-width = { workspace = true }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
vte = { workspace = true }
|
|
wasmi_wasi = { version = "1.1.0" }
|
|
zellij-utils = { workspace = true }
|
|
once_cell = "1.19"
|
|
num_cpus = { workspace = true }
|
|
|
|
[dependencies.wasmi]
|
|
version = "1.1.0"
|
|
default-features = false
|
|
features = ["std"]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
close_fds = "0.3.2"
|
|
daemonize = { workspace = true }
|
|
libc = { workspace = true }
|
|
nix = { workspace = true }
|
|
signal-hook = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Console",
|
|
"Win32_System_Pipes",
|
|
"Win32_System_Threading",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
insta = "1.6.0"
|
|
tempfile = "3.2.0"
|
|
wasmi = { version = "1.1.0", features = ["std"] }
|
|
|
|
[features]
|
|
web_server_capability = ["zellij-utils/web_server_capability"]
|