mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-22 13:02:12 +03:00
93 lines
3.0 KiB
TOML
93 lines
3.0 KiB
TOML
[package]
|
|
name = "zellij"
|
|
version = "0.42.0"
|
|
authors = ["Aram Drevekenin <aram@poor.dev>"]
|
|
edition = "2021"
|
|
description = "A terminal workspace with batteries included"
|
|
license = "MIT"
|
|
repository = "https://github.com/zellij-org/zellij"
|
|
homepage = "https://zellij.dev"
|
|
include = ["src/**/*", "assets/layouts/*", "assets/config/*", "LICENSE.md", "README.md", "!**/*_test.*", "!**/tests/**/*"]
|
|
# NOTE: When updating this, modify `channel` in `rust-toolchain.toml` accordingly
|
|
rust-version = "1.75"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
zellij-client = { path = "zellij-client/", version = "0.42.0" }
|
|
zellij-server = { path = "zellij-server/", version = "0.42.0" }
|
|
zellij-utils = { path = "zellij-utils/", version = "0.42.0" }
|
|
thiserror = "1.0.40"
|
|
names = { version = "0.14.0", default-features = false }
|
|
log = "0.4.17"
|
|
dialoguer = "0.10.4"
|
|
suggest = "0.4.0"
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.6.0", features = ["backtrace"] }
|
|
ssh2 = "0.9.1"
|
|
rand = "0.8.0"
|
|
regex = "1.8.1"
|
|
|
|
[workspace]
|
|
members = [
|
|
"default-plugins/compact-bar",
|
|
"default-plugins/status-bar",
|
|
"default-plugins/strider",
|
|
"default-plugins/tab-bar",
|
|
"default-plugins/fixture-plugin-for-tests",
|
|
"default-plugins/session-manager",
|
|
"default-plugins/configuration",
|
|
"default-plugins/plugin-manager",
|
|
"zellij-client",
|
|
"zellij-server",
|
|
"zellij-utils",
|
|
"zellij-tile",
|
|
"zellij-tile-utils",
|
|
"xtask",
|
|
".",
|
|
]
|
|
|
|
[profile.dev-opt]
|
|
inherits = "dev"
|
|
|
|
[profile.dev-opt.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
|
|
[package.metadata.deb]
|
|
depends = "$auto"
|
|
license-file = ["LICENSE.md", "4"]
|
|
assets = [
|
|
["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"],
|
|
]
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.tar.gz"
|
|
bin-dir = "{ bin }{ binary-ext }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[features]
|
|
# See remarks in zellij_utils/Cargo.toml
|
|
default = ["plugins_from_target", "vendored_curl"]
|
|
plugins_from_target = ["zellij-utils/plugins_from_target"]
|
|
disable_automatic_asset_installation = ["zellij-utils/disable_automatic_asset_installation"]
|
|
vendored_curl = ["zellij-utils/vendored_curl"]
|
|
unstable = ["zellij-client/unstable", "zellij-utils/unstable"]
|
|
singlepass = ["zellij-server/singlepass"]
|
|
|
|
# uncomment this when developing plugins in the Zellij UI to make plugin compilation faster
|
|
# [profile.dev.package."*"]
|
|
# opt-level = 3
|