mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-22 04:33:13 +00:00
2ef3583eff
This removes the need for cargo-make and replaces it with a custom xtask binary. See <https://github.com/matklad/cargo-xtask> for info. Rearranges the CI workflow to use the new xtask and simplify which workflows that run. --------- Co-authored-by: Orhun Parmaksız <orhun@archlinux.org>
16 lines
424 B
TOML
16 lines
424 B
TOML
[package]
|
|
name = "xtask"
|
|
edition = "2021"
|
|
publish = false
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
cargo_metadata = "0.18.1"
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
clap-cargo = { version = "0.14.1", features = ["cargo_metadata"] }
|
|
clap-verbosity-flag = "2.2.2"
|
|
color-eyre = "0.6.3"
|
|
duct = "0.13.7"
|
|
tracing = "0.1.40"
|
|
tracing-log = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|