* cargo: Introduce workspace dependencies and deduplicate dependency entries across all non-plugin workspace members. In the future this hopefully makes dependency upgrade easier since shared dependencies need only be touched in one location. * docs: Update CHANGELOG with PR #4085.
19 lines
492 B
TOML
19 lines
492 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
prost-build = "0.11.9"
|
|
toml = "0.5"
|
|
which = "4.2"
|
|
xflags = "0.3.2"
|
|
# TODO(hartan): Update this once we get a new release. See:
|
|
# <https://github.com/matklad/xshell/issues/63>
|
|
xshell = "= 0.2.2"
|
|
|
|
[lints.rust]
|
|
# Only required because we need to fix `xshell` to `=0.2.2`
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(trick_rust_analyzer_into_highlighting_interpolated_bits)'] }
|