mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-27 14:34:32 +03:00
a9ce13c1d2
The `parametric_resize_beta` feature has been added that enables the new resize system. This change also introduces some background tweaks that start laying the groundwork for future resize work without breaking functionality.
61 lines
2.1 KiB
TOML
61 lines
2.1 KiB
TOML
[package]
|
|
name = "zellij"
|
|
version = "0.13.0"
|
|
authors = ["Aram Drevekenin <aram@poor.dev>"]
|
|
edition = "2018"
|
|
description = "A terminal workspace with batteries included"
|
|
license = "MIT"
|
|
repository = "https://github.com/zellij-org/zellij"
|
|
homepage = "https://zellij.dev"
|
|
include = ["src/**/*", "assets/plugins/*", "assets/layouts/*", "assets/config/*", "LICENSE.md", "README.md", "!**/*_test.*", "!**/tests/**/*"]
|
|
resolver = "2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
names = "0.11.0"
|
|
zellij-client = { path = "zellij-client/", version = "0.13.0" }
|
|
zellij-server = { path = "zellij-server/", version = "0.13.0" }
|
|
zellij-utils = { path = "zellij-utils/", version = "0.13.0" }
|
|
|
|
[dev-dependencies]
|
|
insta = "1.6.0"
|
|
zellij-utils = { path = "zellij-utils/", version = "0.13.0", features = ["test"] }
|
|
zellij-client = { path = "zellij-client/", version = "0.13.0", features = ["test"] }
|
|
zellij-server = { path = "zellij-server/", version = "0.13.0", features = ["test"] }
|
|
|
|
[workspace]
|
|
members = [
|
|
"zellij-client",
|
|
"zellij-server",
|
|
"zellij-utils",
|
|
"zellij-tile",
|
|
"zellij-tile-utils",
|
|
"default-plugins/status-bar",
|
|
"default-plugins/strider",
|
|
"default-plugins/tab-bar",
|
|
".",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = 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"],
|
|
]
|
|
|
|
[features]
|
|
disable_automatic_asset_installation = []
|
|
parametric_resize_beta = []
|