mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 15:04:36 +03:00
b904ed7677
Previously we'd return the Url string. Now we provide a Url object that provides access to the various elements of the Url. This will cause slightly breakage for folks that were treating it as a string in their status event handlers, for example. The docs have been updated to show how to run with both this new Url object and also continue to run on older versions of wezterm. They now also show how to manually percent decode the url for older versions of wezterm. refs: https://github.com/wez/wezterm/discussions/4157 refs: https://github.com/wez/wezterm/issues/4000
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "env-bootstrap"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
backtrace = "0.3"
|
|
chrono = {version="0.4", default-features=false, features=["unstable-locales"]}
|
|
config = { path = "../config" }
|
|
dirs-next = "2.0"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
termwiz = { path = "../termwiz" }
|
|
battery = { path = "../lua-api-crates/battery" }
|
|
color-funcs = { path = "../lua-api-crates/color-funcs" }
|
|
termwiz-funcs = { path = "../lua-api-crates/termwiz-funcs" }
|
|
logging = { path = "../lua-api-crates/logging" }
|
|
mux-lua = { path = "../lua-api-crates/mux" }
|
|
procinfo-funcs = { path = "../lua-api-crates/procinfo-funcs" }
|
|
filesystem = { path = "../lua-api-crates/filesystem" }
|
|
json = { path = "../lua-api-crates/json" }
|
|
plugin = { path = "../lua-api-crates/plugin" }
|
|
share-data = { path = "../lua-api-crates/share-data" }
|
|
ssh-funcs = { path = "../lua-api-crates/ssh-funcs" }
|
|
spawn-funcs = { path = "../lua-api-crates/spawn-funcs" }
|
|
time-funcs = { path = "../lua-api-crates/time-funcs" }
|
|
url-funcs = { path = "../lua-api-crates/url-funcs" }
|
|
wezterm-version = { path = "../wezterm-version" }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = "0.3"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = "0.20"
|
|
objc = "0.2"
|
|
|