mirror of
https://github.com/wezterm/wezterm.git
synced 2026-07-30 15:18:08 +08:00
There have been a couple of attempts at this in the past, which had some usability warts in what I recall as an earlier, less useful set of features overall. Whether that was collective misunderstanding at the time, or things have gotten better since then, now is a good time to adopt the workspace dep syntax, because wezterm has many crates to keep on top of, and automation like dependabot can't see a lot of them. This will help to manage the versions of deps in wezterm centrally. Let's try this out in CI: the Cargo.lock changes here are minimal (eliminated a second version of base64 from one crate, terminal_size from another, and removed an explicit dep on serde_derive) so hopefully this sails through on !linux. closes: https://github.com/wezterm/wezterm/pull/6668
16 lines
329 B
TOML
16 lines
329 B
TOML
[package]
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
name = "promise"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-executor.workspace = true
|
|
async-io.workspace = true
|
|
async-task.workspace = true
|
|
flume.workspace = true
|
|
lazy_static.workspace = true
|
|
thiserror.workspace =true
|