mirror of
https://github.com/wez/wezterm.git
synced 2024-11-30 14:49:26 +03:00
c66e8f5c5e
80214319ae
broke the use of RUST_LOG to
turn up trace logging.
This commit refactors logger initialization into the env-bootstrap crate
so that it is centralized, and adopts the use of `WEZTERM_LOG` to
override the default logging filters, rather than `RUST_LOG`.
20 lines
409 B
TOML
20 lines
409 B
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]
|
|
config = { path = "../config" }
|
|
dirs-next = "2.0"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = "0.20"
|
|
libc = "0.2"
|
|
objc = "0.2"
|
|
|