mirror of
https://github.com/wezterm/wezterm.git
synced 2026-07-31 11:41:56 +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
13 lines
294 B
TOML
13 lines
294 B
TOML
[package]
|
|
name = "wezterm-uds"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/wezterm/wezterm"
|
|
description = "Portable unix domain sockets"
|
|
license = "MIT"
|
|
documentation = "https://docs.rs/wezterm-uds"
|
|
|
|
[dependencies]
|
|
async-io.workspace = true
|
|
uds_windows.workspace = true
|