summaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authorhar7an <99636919+har7an@users.noreply.github.com>2023-05-09 02:43:28 +0000
committerGitHub <noreply@github.com>2023-05-09 02:43:28 +0000
commit30d0cffa4294b27da88253b5fb24b40044310338 (patch)
tree66e9cbb833571aee022d5739451e0925c32aeefb /.cargo
parent204c41e63f5a134e2f371ee56e0fb29acea64672 (diff)
Use rust 1.67 (#2375)
* rust: Update toolchain version to 1.67 * xtask/pipeline/publish: Drop manual "wait" for crates.io to catch up, which is obsolete with rust 1.66 and up. Cargo does that on its own now. See https://github.com/rust-lang/cargo/pull/11062 * xtask: Add function to obtain asset_dir instead of assembling it on demand throughout the codebase. * xtask/run: Add '--quick-run' flag as a convenient shorthand for `cargo xtask run --data-dir $PROJECT_ROOT/zellij-utils/assets`. * cargo: Add 'q' command alias as a shorthand for 'cargo xtask run --quick-run' * cargo: Update thiserror to 1.0.40 * cargo: Update anyhow to 1.0.70 and specify dependency only once inside `zellij-utils`, not inside the zellij root crate. * cargo: Update names to 0.14.0 * cargo: Update miette to 5.7.0 and re-export the dependency from zellij-utils, to avoid duplicate (incompatible) includes from inside zellij-utils and the root crate. * cargo: Update dialoguer to 0.10.4 * fix formatting * changelog: Add PR #2375
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 87b1763d5..9b113f5d5 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -3,4 +3,5 @@ parallel-compiler = true
[alias]
xtask = "run --package xtask --"
x = "xtask"
+q = "x run --quick-run"
make = "xtask deprecated"