mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-29 23:31:03 +03:00
d1f50150f6
* xtask: Implement a new build system xtask is a cargo alias that is used to extend the cargo build system with custom commands. For an introduction to xtask, see here: https://github.com/matklad/cargo-xtask/ The idea is that instead of writing makefiles, xtask requires no additional dependencies except `cargo` and `rustc`, which must be available to build the project anyway. This commit provides a basic implementation of the `build` and `test` subcommands. * xtask/deps: Add 'which' * xtask/test: Handle error when cargo not found * xtask/flags: Add more commands to perform different useful tasks. Includes: - clippy - format - "make" (composite) - "install" (composite) Also add more options to `build` to selectively compile plugins or leave them out entirely. * xtask/main: Return error when cargo not found * xtask/build: Add more subtasks - `wasm_opt_plugins` and - `manpage` that perform other build commands. Add thorough documentation on what each of these does and also handle the new `build` cli flags appropriately. * xtask/clippy: Add job to run clippy * xtask/format: Add job to run rustfmt * xtask/pipeline: Add composite commands that perform multiple atomic xtask commands sequentially in a pipeline sort of fashion. * xtask/deps: Pin dependencies * xtask/main: Integrate new jobs and add documentation. * xtask: Implement 'dist' which performs an 'install' and copies the resulting zellij binary along with some other assets to a `target/dist` folder. * cargo: Update xflags version * xtask: Measure task time, update tty title * xtask: Update various tasks * xtask: wasm-opt plugins in release builds automatically. * xtask/build: Copy debug plugins to assets folder * xtask: Add 'run' subcommand * xtask: Add arbitrary args to test and run * xtask: Rearrange CLI commands in help * xtask: Add deprecation notice * docs: Replace `cargo make` with `xtask` * github: Use `xtask` in workflows. * xtask: Add support for CI commands * xtask: Streamline error handling * github: Use new xtask commands in CI * xtask: Add 'publish' job * xtask/publish: Add retry when publish fails * xtask: Apply rustfmt * xtask: Refine 'make' deprecation warning * xtask: add task to build manpage * contributing: Fix e2e commands * xtask/run: Add missing `--` to pass all arguments following `xtask run` directly to the zellij binary being run. * xtask: Stay in invocation dir and make all tasks that need it change to the project root dir themselves. * xtask/run: Add `--data-dir` flag which will allow very quick iterations when not changing the plugins between builds. * xtask/ci: Install dependencies without asking * utils: Allow including plugins from target folder * utils/assets: Reduce asset map complexity * utils/consts: Update asset map docs * xtask: Fix plugin includes * xtask/test: Build plugins first because the zellij binary needs to include the plugins. * xtask/test: Fix formatting * xtask: Add notice on how to disable it
61 lines
1.7 KiB
TOML
61 lines
1.7 KiB
TOML
[package]
|
|
name = "zellij-utils"
|
|
version = "0.34.5"
|
|
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
|
|
edition = "2021"
|
|
description = "A utility library for Zellij client and server"
|
|
license = "MIT"
|
|
include = ["src/**/*", "assets/"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.45", features = ["backtrace"] }
|
|
backtrace = "0.3.55"
|
|
rmp-serde = "1.1.0"
|
|
clap = { version = "3.2.2", features = ["derive", "env"] }
|
|
clap_complete = "3.2.1"
|
|
colored = "2.0.0"
|
|
colorsys = "0.6.5"
|
|
crossbeam = "0.8.1"
|
|
directories-next = "2.0"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2"
|
|
nix = "0.23.1"
|
|
once_cell = "1.8.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
strip-ansi-escapes = "0.1.0"
|
|
strum = "0.20.0"
|
|
strum_macros = "0.20.1"
|
|
thiserror = "1.0.30"
|
|
url = { version = "2.2.2", features = ["serde"] }
|
|
vte = { version = "0.11.0", default-features = false }
|
|
log = "0.4.17"
|
|
unicode-width = "0.1.8"
|
|
miette = { version = "3.3.0", features = ["fancy"] }
|
|
regex = "1.5.5"
|
|
tempfile = "3.2.0"
|
|
kdl = { version = "4.5.0", features = ["span"] }
|
|
|
|
#[cfg(not(target_family = "wasm"))]
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
termwiz = "0.19.0"
|
|
log4rs = "1.2.0"
|
|
signal-hook = "0.3"
|
|
interprocess = "1.1.1"
|
|
async-std = { version = "1.3.0", features = ["unstable"] }
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.6.0", features = ["backtrace"] }
|
|
|
|
|
|
[features]
|
|
# If this feature is NOT set (default):
|
|
# - builtin plugins (status-bar, tab-bar, ...) are loaded directly from the application binary
|
|
# If this feature is set:
|
|
# - builtin plugins MUST be available from whatever is configured as `PLUGIN_DIR`
|
|
disable_automatic_asset_installation = []
|
|
unstable = []
|
|
plugins_from_target = []
|