mirror of
https://github.com/wez/wezterm.git
synced 2024-11-24 07:46:59 +03:00
b35e3b2aad
Go directly to the underlying env_logger crate, as pretty_env_logger hasn't been updated in some time, and I'd like to be able to redirect the log output to a file more directly, and that feature is in a newer version of the env logger than pretty_env_logger was pulling in.
21 lines
453 B
TOML
21 lines
453 B
TOML
[package]
|
|
name = "wezterm-bidi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/wez/wezterm"
|
|
description = "The Unicode Bidi Algorithm (UBA)"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
use_serde = ["serde"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
serde = {version="1.0", features = ["derive"], optional=true}
|
|
|
|
[dev-dependencies]
|
|
k9 = "0.11.0"
|
|
env_logger = "0.9"
|