2021-02-10 01:19:34 +03:00
|
|
|
[package]
|
|
|
|
name = "zellij"
|
2021-02-26 12:27:59 +03:00
|
|
|
version = "0.2.1"
|
2021-02-10 01:19:34 +03:00
|
|
|
authors = ["Aram Drevekenin <aram@poor.dev>"]
|
|
|
|
edition = "2018"
|
2021-02-16 21:50:22 +03:00
|
|
|
description = "Terminal workspace (WIP)"
|
|
|
|
license = "MIT"
|
2021-02-26 01:42:52 +03:00
|
|
|
repository = "https://github.com/zellij-org/zellij"
|
2021-02-10 01:19:34 +03:00
|
|
|
|
2021-02-26 02:26:31 +03:00
|
|
|
[features]
|
|
|
|
publish = []
|
2021-02-26 02:05:04 +03:00
|
|
|
|
2021-02-10 01:19:34 +03:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-07 19:39:44 +03:00
|
|
|
ansi_term = "0.12.1"
|
2021-02-10 01:19:34 +03:00
|
|
|
backtrace = "0.3.55"
|
|
|
|
bincode = "1.3.1"
|
|
|
|
directories-next = "2.0"
|
|
|
|
futures = "0.3.5"
|
|
|
|
libc = "0.2"
|
|
|
|
nix = "0.19.1"
|
|
|
|
nom = "6.0.1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_yaml = "0.8"
|
|
|
|
signal-hook = "0.1.10"
|
|
|
|
strip-ansi-escapes = "0.1.0"
|
|
|
|
structopt = "0.3"
|
2021-02-10 14:56:13 +03:00
|
|
|
# termion = { git = "https://gitlab.com/TheLostLambda/termion.git", version = "1.6.0", features = ["serde"] }
|
|
|
|
termion = { package = "termion_temporary_zellij_fork" , version = "1.6.0", features = ["serde"]}
|
2021-02-10 01:19:34 +03:00
|
|
|
termios = "0.3"
|
|
|
|
unicode-truncate = "0.2.0"
|
|
|
|
unicode-width = "0.1.8"
|
|
|
|
vte = "0.8.0"
|
|
|
|
strum = "0.20.0"
|
|
|
|
strum_macros = "0.20.0"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
wasmer = "1.0.0"
|
|
|
|
wasmer-wasi = "1.0.0"
|
|
|
|
interprocess = "1.0.1"
|
|
|
|
|
|
|
|
[dependencies.async-std]
|
|
|
|
version = "1.3.0"
|
|
|
|
features = ["unstable"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
insta = "1.6.0"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
directories-next = "2.0"
|
|
|
|
structopt = "0.3"
|
|
|
|
walkdir = "2"
|
|
|
|
toml = "0.5.8"
|
|
|
|
|
2021-02-09 22:06:47 +03:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"zellij-tile",
|
2021-02-10 01:19:34 +03:00
|
|
|
"default-tiles/status-bar",
|
|
|
|
"default-tiles/strider",
|
2021-02-21 02:19:05 +03:00
|
|
|
"default-tiles/tab-bar",
|
2021-02-09 22:06:47 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2021-02-10 01:19:34 +03:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
depends = "$auto"
|
|
|
|
license-file = ["LICENSE.md", "4"]
|
|
|
|
assets = [
|
|
|
|
# TODO?
|
2021-02-10 09:53:40 +03:00
|
|
|
# ["assets/man/zellij.1", "usr/share/man/man1/zellij.1", "644"],
|
|
|
|
["target/release/zellij", "usr/bin/zellij", "755"],
|
|
|
|
["GOVERNANCE.md", "usr/share/doc/zellij/GOVERNANCE.md", "644"],
|
|
|
|
["README.md", "usr/share/doc/zellij/README.md", "644"],
|
|
|
|
["assets/layouts/*", "usr/share/zellij/layouts/", "644"],
|
|
|
|
["assets/plugins/*", "usr/share/zellij/plugins/", "644"],
|
|
|
|
["assets/completions/zellij.bash", "usr/share/bash-completion/completions/zellij.bash", "644"],
|
|
|
|
["assets/completions/zellij.fish", "usr/share/fish/vendor_completions.d/zellij.fish", "644"],
|
|
|
|
["assets/completions/_zellij", "usr/share/zsh/vendor-completions/_zellij", "644"],
|
2021-02-10 01:19:34 +03:00
|
|
|
]
|