mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
f5ba73a1a2
The upstream open crate keeps making stuff async/blocking/not-working on windows, so this is a step towards removing this dependency. refs: https://github.com/wez/wezterm/issues/3288
29 lines
528 B
TOML
29 lines
528 B
TOML
[workspace]
|
|
members = [
|
|
"bidi",
|
|
"bidi/generate",
|
|
"strip-ansi-escapes",
|
|
"sync-color-schemes",
|
|
"wezterm",
|
|
"wezterm-blob-leases",
|
|
"wezterm-dynamic",
|
|
"wezterm-gui",
|
|
"wezterm-mux-server",
|
|
"wezterm-open-url",
|
|
"wezterm-ssh"
|
|
]
|
|
resolver = "2"
|
|
exclude = [
|
|
"termwiz/codegen"
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
# debug = 2
|
|
|
|
[profile.dev]
|
|
# https://jakedeichert.com/blog/reducing-rust-incremental-compilation-times-on-macos-by-70-percent/
|
|
# Disabled because it breaks builds on Windows
|
|
#split-debuginfo = "unpacked"
|
|
|